最近。剛開始學習Linux。下面簡單介紹一下在Linux 下實現hello world的幾個步驟:
先附上基本的過程
[crazw@Linux ~]$ lscode Documents Music Public Templates 資訊安全競賽報告.docDesktop Downloads Pictures software Videos [crazw@Linux ~]$ cd code/[crazw@Linux code]$ ls[crazw@Linux code]$ mkdir hello[crazw@Linux code]$ lshello[crazw@Linux code]$ vim ./hello/hello.c[crazw@Linux code]$ gcc hello.c -o hellogcc: error: hello.c: No such file or directorygcc: fatal error: no input filescompilation terminated.[crazw@Linux code]$ cd hello[crazw@Linux hello]$ gcc hello.c -o hello[crazw@Linux hello]$ ./helloHelllo world
j接下來具體講一下每個步驟:
首先:通過vim 建立一個 .c 檔案。
如下:我是在Code檔案夾下,建立一個Hello檔案夾然後在用vim見一個hello.c檔案:
[crazw@Linux ~]$ cd code/[crazw@Linux code]$ ls[crazw@Linux code]$ mkdir hello[crazw@Linux code]$ lshello
然後,按以下“ i ” 進入編輯模式:然後寫入基本的程式碼完成後,按下ESC,再按“ : wq”,此是儲存並退出命令。w:儲存。q:退出。(這裡不多講,這是vi的基本操作。不多敘述)
再用gcc編譯一下產生一個可執行檔 此處命名為:hello
[crazw@Linux code]$ cd hello[crazw@Linux hello]$ gcc hello.c -o hello
最後執行一下 hello檔案 看一下結果:
[crazw@Linux hello]$ ./helloHelllo world
好了。初步學習Linux。希望大家勿噴。