博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu 下 C++ 编程起步
阅读量:6472 次
发布时间:2019-06-23

本文共 235 字,大约阅读时间需要 1 分钟。

1. 首先安装g++

  sudo apt-get install build-essential

 

2. 输入一个简单的cpp程序

#include <iostream>
using 
namespace std;
int main()
{
    cout << 
"
Hello Ubuntu!
" << endl;
    
return 
0;
}

 

3. 编译

    g++ -o hello.exe hello.cpp

 

4. 运行

  ./hello.exe

5. 结果

  Hello Ubuntu!

 

转载地址:http://gyvko.baihongyu.com/

你可能感兴趣的文章
Atitit.获取某个服务 网络邻居列表 解决方案
查看>>
Trusty TEE
查看>>
[LeetCode] Reverse String 翻转字符串
查看>>
学习iOS【3】数组、词典和集合
查看>>
Hessian 原理分析--转
查看>>
转: 基于netty+ protobuf +spring + hibernate + jgroups开发的游戏服务端
查看>>
easyui传入map的数据前台展示出tree格式数据
查看>>
悲观的思考,乐观的生活.我们既需要思考的深度,也需要生活的温度!
查看>>
java.math.BigDecimal
查看>>
Vitamio中文API文档(4)—— VitamioInstaller
查看>>
河内之塔
查看>>
图像处理之基础---内窥镜医学图像增强
查看>>
yii框架常用url地址
查看>>
python3.4学习笔记(十六) windows下面安装easy_install和pip教程
查看>>
MyGUI 解析
查看>>
Linux中的ls命令详细使用
查看>>
graph-tool文档(一)- 快速开始使用Graph-tool - 2.属性映射、图的IO和Price网络
查看>>
graph-tool 练习
查看>>
easyui treegrid逐步加载
查看>>
GraphicsLab Project之辉光(Glare,Glow)效果 【转】
查看>>