タイトル: コンパイルと実行方法
SEOタイトル: 【C++】コンパイルと実行方法
前提
WIndows OS
Visual Studio Code
プログラム
test.cpp | |
---|---|
|
コンパイル
gcc -o test test.cpp |
実行
./test.exe |
出力結果
Hello |