Ubuntu下用終端編譯執行c 程式

2021-07-03 14:54:24 字數 426 閱讀 2003

ubuntu7.10下不用ide工具,只用終端,測試->編譯->執行,一氣呵成!

具體步驟:

1,確保ubuntu7.10中已經安裝gcc,安裝方法:sudo apt-get install gcc

2,編寫乙個簡單的cpp檔案test.cpp,放在指定地方

示例:# include

using namespace std;

int larger(int, int);

int main()

將此程式儲存在/home/user/桌面, 開啟終端(注意user即你的系統使用者名稱)

3, 編譯: g++ /home/user/桌面/test.cpp -o test.out

4,如果沒有提示錯誤,可以執行編譯後的程式:./test.out

說明:test.out可以替換為任意的名字

在ubuntu7 10用終端編譯執行c 程式

不用ide工具,只用終端,測試 編譯 執行,一氣呵成!具體步驟 1,確保已經安裝gcc,安裝方法 sudo apt get install gcc 2,編寫乙個簡單的cpp檔案test.cpp,放在指定地方 示例 include using namespace std int larger int,...

Ubuntu編譯執行C

首先,先在linux下的任意乙個編輯器裡寫一段c,然後儲存。然後呢,開啟終端,輸入 cd 資料夾 c 千萬不要忘記cd和 之間有乙個空格 然後接著輸入 gcc c c是你儲存的檔名 然後呢,再輸入 a.out 你所寫的c命令就能夠執行了。按照上述命令編譯c,會在當前目錄生成乙個名為a.out的可執行...

ubuntu下C 程式的編譯和執行

1 vi hello.cpp 2.輸入i進入插入模式,輸入以下 include using namespace std int main int argc,char argv std cout hello world 3 按下esc,退出插入模式 4 輸入 5 輸入wq 儲存退出 6 開啟終端輸入g...