ubuntu中如何编译c++程序 ubuntu怎样编译c程序

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

文章摘要:ubuntu中如何编译c++程序 ubuntu怎样编译c程序

ubuntu中编译c++程序的方法: 1.打开终端使用vim编辑c++代码。 vim hello.cpp 输入 […]

ubuntu中编译c++程序的方法:

1.打开终端使用vim编辑c++代码。

vim hello.cpp

输入如下代码:

#include

using namespace std;

int main()

{

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

}

保存修改。

2.使用以下命令进行编译。

gcc hello.cpp -lstdc++ -o hello

//或

g++ hello.cpp -o hello

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

./hello


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:ubuntu中如何编译c++程序 ubuntu怎样编译c程序
文章链接:http://www.7966.org/post/14306.html
转载请注明出处

喜欢 (0)