c++ compile program linux terminal code example
Example 1: compile c++ linux
g++ foo.cpp -o foo //plus other extension like the opencv to compile correctly
Example 2: terminal compile c++
g++ -o file file.cpp //or file.c
g++ foo.cpp -o foo //plus other extension like the opencv to compile correctly
g++ -o file file.cpp //or file.c