c

 

 

 

hello.c

#include <stdio.h>

int main()
{
    printf("hello, world!\n");
    return 0;       
}

编译生成hello可执行目标文件:

  $ gcc -o hello hello.c

运行:

  $ ./hello

 

posted on 2019-02-22 20:22  <Hbw>  阅读(1862)  评论(0)    收藏  举报