c:你好世界
#include <stdio.h> // 预处理器指令#include(包含) <stdio.h>(standard input output header标准输入输出头文件)包含另一个文件,以此来使用stdio.h中的printf()等函数
int main(void) // int返回值类型为整型,main()函数为程序的入口函数,不传参数写作main()或main(void)
{ // 函数体
printf("Hello World!\n"); // printf() 格式化打印format,可变参数列表
getchar(); // getchar()函数使程序阻塞等待用户输入任何字符以继续
return 0; // 返回int类型数值,main()函数的函数体结束
}