1. 编写helloworld
#include <iostream> using namespace std; int main(){ cout<<"hello world"<<endl; return 0; }
2.编译
$ g++ hello.cpp -o hello
$./hello
一般linux默认自带gcc,用gcc -v 查看
标签:笔记 默认 name ++ world str inux gcc body
1. 编写helloworld
#include <iostream> using namespace std; int main(){ cout<<"hello world"<<endl; return 0; }
2.编译
$ g++ hello.cpp -o hello
$./hello
一般linux默认自带gcc,用gcc -v 查看
标签:笔记 默认 name ++ world str inux gcc body
原文地址:http://www.cnblogs.com/Baronboy/p/8026864.html