一直想学C++,今天无聊就按照网上的资料写了一个hello world的程序。
本文假设读者已经有了Linux的基本知识,C++的基本语法知识,能操作VI。
一、首先创建a.cpp,在Linux终端之下,直接vi a.cpp,然后进入编辑模式(a或者i)
二、编写源文件,文件内容如下
#include<iostream> int main(){ std::cout<<"welcome to Linux world !"<<std::endl; std::cout<<"this is a first program with c++ under the Linux!"<<std::endl; return 0; }
三、编译,确保你的Linux已经安装了g++(注意不是gcc),输入命令 g++ a.cpp -o rr
四、执行./rr,运行结果