1. 程式人生 > >第一個linux下的c語言程式

第一個linux下的c語言程式

當然是列印hello world啦。

 1.vim helloworld.c如下:

#include <stdio.h>
int main()
{
    char *c;
    c = "hello world!";
    printf("%s\n",c);
    return 0;
}

2.編譯並連線程式:

[[email protected] bin]# gcc -o helloworld helloworld.c 
[[email protected] bin]# ll hello*
-rwxr-xr-x 1 root root 6494 Oct 17 20:49 helloworld
-rw-r--r-- 1 root root  107 Oct 17 20:48 helloworld.c

3.執行二進位制檔案,得到結果:

[[email protected] bin]# less helloworld
"helloworld" may be a binary file.  See it anyway? 
[[email protected] bin]# ./helloworld 
hello world!