一个最基本的C程序由五个部分组成:
头文件 (Preprocessor commands)
函数 (function)
变量 (variable)
语句块 (statement 和 expression)
注释 (comments)
例如:
#include <stdio.h>
int main(){
/*my first c programming*/
printf("hello,world\n");
return 0;
}
c语言学习之 程序基本结构,码迷,mamicode.com
时间: 2024-10-27 07:16:11