Mac下的C++编译

clang++编译

# 编译
$ clang++ -o HelloWorld HelloWorld.cpp 

# 执行
$ ./HelloWorld
Hello world!

g++编译

# 编译
$ g++ -o HelloWorld HelloWorld.cpp 

# 执行
$ ./HelloWorld 
Hello world!

Loading Disqus comments...
Table of Contents