美文网首页
01-helloworld

01-helloworld

作者: 我是许同学 | 来源:发表于2018-08-21 07:30 被阅读8次

    代码如下:
    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