当前位置: 代码迷 >> C语言 >> 编译器 问题!
  详细解决方案

编译器 问题!

热度:486   发布时间:2007-11-22 22:56:37.0
编译器 问题!
这是我的代码!

#include "stdafx.h"
int main(int argc, char* argv[])
{
printf("Hello World!\n");
return 0;
}

是默认的hello world

但是编译器报错了!

--------------------Configuration: textddf - Win32 Debug--------------------
Compiling...
textddf.cpp
daffd.cpp
d:\software\text\textddf\daffd.cpp(2) : fatal error C1010: unexpected end of file while looking for precompiled header directive
Generating Code...
执行 cl.exe 时出错.
textddf.exe - 1 error(s), 0 warning(s)

我的编译器版本是 VC++6.0 sp6
请不要回答让我换编译器!
谢谢
搜索更多相关的解决方案: cpp  textddf  编译  int  

----------------解决方案--------------------------------------------------------
头文件应该是 <stdio.h>
----------------解决方案--------------------------------------------------------
  相关解决方案