C++練習用として C:\work\cpp フォルダを作成した。
この中に test.cpp ファイルを作成。
#includeusing namespace std; int main() { cout << "hello world" << endl; return 0; }
コマンドプロンプトを起動し c:\work\cpp フォルダへ移動
"g++ -o test.exe test.cpp" でコンパイル
test.exeが作成されるので実行してみる
→ OK
C:\work\cpp>g++ -o test.exe test.cpp C:\work\cpp>test.exe hello world C:\work\cpp>
[MinGW][C++]
0 件のコメント:
コメントを投稿