代码如下:
hello.c
#include <stdio.h>
main()
{
printf("hello,world\n");
}
编译:
cc hello.c
在当前目录下生成a.out文件
运行:
a.out
输入a.out便可运行
组成部分:
#include <stdio.h>
这个为标准库信息,用于告诉编译器在本程序中包含标准输入、输出库的信息。
mian()
程序入口
代码如下:
hello.c
#include <stdio.h>
main()
{
printf("hello,world\n");
}
编译:
cc hello.c
在当前目录下生成a.out文件
运行:
a.out
输入a.out便可运行
#include <stdio.h>
这个为标准库信息,用于告诉编译器在本程序中包含标准输入、输出库的信息。
mian()
程序入口
本文标题:01-helloworld
本文链接:https://www.haomeiwen.com/subject/fotdiftx.html
网友评论