C语言头文件问题

两个工程的 stdafx.h 不一样。

【C语言头文件问题】 Simple Application 的 stdafx.h, 里面没有 #include \u0026lt;stdio.h\u0026gt;
Hello World Application 的 stdafx.h, 里面有 #include \u0026lt;stdio.h\u0026gt;

所以,前者需要显式手动 #include \u0026lt;stdio.h\u0026gt;,而后者不需要。

■网友
为什么同样是打印hello,world 选择简单的程序打印要加上头文件#include \u0026lt;stdio.h\u0026gt;才可以打印你也可以不加 stdio.h 啊,
int printf(const char *format, ...);int main(void){ printf("Hello, World!\"); return 0;}


    推荐阅读