2010年8月15日 星期日

ubuntu C++安裝與執行



1.需要安裝build-essential與編譯器g++
在終端機輸入以下這個指令安裝吧
sudo apt-get install g++ build-essential


2.開始寫程式
sudo vi hello.cpp


3.寫下程式碼
#include<iostream>
using namespace std; 

main() {
     cout << "hello" << endl;
} 

4.編譯並產生輸出檔
g++ hello.cpp -o hello.out -Wall

g++:編譯器compiler
hello.cpp:cpp檔案所在位置 (目前寫法是當下位置)
-o hello.out:-o 表示輸出,接者是輸出檔案位置+名稱
-Wall:顯示所有警告訊息

5.執行程式吧!
./hello.out
參考資料