Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
でターミナルを使用してプログラムをコンパイルするFedora Linuxには、次の手順を実行します。
Fedora Linux
> g++ hello.cpp
プログラムを実行するにはどうすればよいですか?
ありがとう。
次のように実行できるファイル「a.out」が生成されます。./a.out
./a.out
または、次を使用して実行可能ファイルの名前を指定できます-o。
-o
g++ yourfile.cpp -o myexe
g++ からのデフォルトの出力は a.out なので、例からプログラムを実行するには:
> ./a.out
代わりに名前を付けるには、次を使用します。
> g++ hello.cpp -o hello > ./hello