cpp
#include <stdio.h>
int main()
{
printf("hello world ! \n");
//打印函数
return 0;
}
"#" : 预处理标志
include <> : 表示预处理的文件在<>内
stdio.h : 标准的io头文件 // io : 输入输出 // printf()函数在stdio.h中
main() :程序的入口
printf(): 输出括号内的内容
return : 返回
{} 函数的主体
// 注释 /* 内容 */ 多行注释
\n 换行