Compiling...
c.cpp
e:\c++\msdev98\myprojects\qqq\c.cpp(15) : fatal error C1010: unexpected end of file while looking for precompiled header directive
执行 cl.exe 时出错.
#include <stdio.h>
int main (void) /*一个简单的C程序*/
{
int num;
num = 1;
printf("I am a simple "); /*使用printf()函数*/
printf("computer.\n");
printf("My favorite number is %d because it is first.",num);
getch();
return 0;
}
再是一下: