用g++编译cpp文件
用g++编译cpp文件1、在learning/day1下,打开终端输入下列代码创建cpp文件touch helloworld.cpp2、在helloworld.cpp文件中,输入下面的c++代码:#include<iostream>using namespace std;int main(int argc,char** argv){ cout<<"hello world!!!"<<endl;