g++ --version
编译:
g++ -o hello hello.cpp
或:
g++ hello.cpp -o hello
或:
g++ hello.cpp
生成hello或a.out
运行:
./hello
或:
./a.out
g++ --version
编译:
g++ -o hello hello.cpp
或:
g++ hello.cpp -o hello
或:
g++ hello.cpp
生成hello或a.out
运行:
./hello
或:
./a.out