如何在不使用C中的头文件的情况下编写hello world?
#include<conio.h> #include<stdio.h> void main(){ printf("Hello World"); getch(); }
这是带头文件的简单C程序......
conio.h
stdio.h
printf
scanf
c header-files forward-declaration
c ×1
forward-declaration ×1
header-files ×1