可能重复: 为什么的#include <stdio.h>中是不使用的printf(需要)?
//#include <stdio.h> //#include <conio.h> main(){ printf("Hi"); getch(); }
当我编程这个时,它震惊了我,它没有实际导入任何包含printf函数的stdio等c库.为什么会这样?(使用Dev-C++ 4.9.9.2,保存为.c,而不是.cpp)
c
c ×1