第一步:只需要安装两个软件:
一个是编译器gcc,另一个是bild-essential(输入sudo apt install build-essential 即可)。
第二步:在终端输入subl hello.c(其中编辑器我使用的是Sublime Text 3)
输入下述代码然后保存至目录home下。
#include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
cout << "Hello World!" << endl;
return 0;
}
第三步:编译hello.c ,并输出。命令如下:
如果要改变输出文件的名称,可以将终端第二行改为g++ hello.c -o hello.out(即生成名为hello.out的可执行文件),第三行改为./hello.out即可输出。
至此成功输出hello world,完成。