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