C程序结构
程序员文章站
2022-07-07 11:37:22
...
============================================================================
Name : First.c
Author : Michael
Version :
Copyright : com.youyizy
Description : Hello World in C, Ansi-style
============================================================================
*/
注释 /* */
#include <stdio.h> 包含另外一个文件 #include <stdio.h> C标准部分 #include<stdlib.h>
#include <stdlib.h>
//main函数 也是方法
int main(void) { //函数开始 ISO/ANSI C对main函数的强制要求
int num; 定义变量
num = 1; //赋值变量
printf("I am a simple "); //标准库函数 光标在同一行
printf("computer.\n"); // \n代表换行
printf("My favorite numbrt is %d because it is first.\n",num); //%d 数据num的位置
return EXIT_SUCCESS; //返回语句
}//函数结束```
转载于:https://my.oschina.net/machell/blog/1329877
上一篇: C 程序结构