vim編譯執行c

歐陽磊發表於2016-12-05

一、安裝vim和gcc

1、開啟控制檯:使用快捷鍵 Ctrl + Alt + T

2、 安裝vim:輸入 sudo apt-get install vim

3、 安裝gcc:輸入sudo apt-get install gcc

二、編寫hello.c原始碼

1、 新建檔名為hello.c的原始檔:輸入vim hello.c

2、 鍵入i 進入insert模式(即編輯輸入模式),寫入如下程式碼:

#include<stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}

3、 輸入完成後,Esc 回到normal模式,鍵入:wq 儲存退出vim。

三、編譯hello.c

在終端執行  gcc  hello.c -o hello 或者gcc hello.c編譯。

四、執行程式hello

輸入./hello 或者./a.out就看到結果:

Hello,world!

相關文章