|
|
Compiling |
|
C++ files should have the extension .cpp or
.cc.
Use the same syntax to compile C++ as for C but use either
g++ or c++ instead of gcc or
cc
g++ -o hello_world hello_world.cpp
Use the same rules for linking libraries as in C. This example links in the math library
g++ -o hello_world hello_world.cpp -lm