如何在Ubuntu上编译gcc命令 ubuntu怎么用gcc编译

主机教程 建站分享 2年前 (2022-11-30) 207次浏览

文章摘要:如何在Ubuntu上编译gcc命令 ubuntu怎么用gcc编译

在Ubuntu上编译gcc命令的示例: 1.打开终端,输入以下命令编辑hello.cpp文件。 vim hel […]

在Ubuntu上编译gcc命令的示例:

1.打开终端,输入以下命令编辑hello.cpp文件。

vim hello.cpp

输入如下代码:

#include

using namespace std;

int main()

{

cout<<"Hello world!"<return 0;

}

保存修改。

2.使用gcc命令进行编译。

gcc hello.cpp -lstdc++ -o hello

//或

g++ hello.cpp -o hello

3.运行可执行文件,在当前目录下输入以下命令查看结果。

./hello


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:如何在Ubuntu上编译gcc命令 ubuntu怎么用gcc编译
文章链接:http://www.7966.org/post/14282.html
转载请注明出处

喜欢 (0)