01-helloworld

2018-08-21  本文已影响8人  我是许同学

代码如下:
hello.c


 #include <stdio.h>

 main()
{
    printf("hello,world\n");
}

编译:

cc hello.c

在当前目录下生成a.out文件

运行:

a.out

输入a.out便可运行

组成部分:

 #include <stdio.h>

这个为标准库信息,用于告诉编译器在本程序中包含标准输入、输出库的信息。

mian()

程序入口

上一篇下一篇

猜你喜欢

热点阅读