Answers for "how to run c++ file in mac"

C++
0

run c++ program in mac terminal

g++ sort.cpp -o sort
./sort
Posted by: Guest on May-02-2021
0

compile and run cpp file on mac c++

// build executable for filename.cpp
make filename
// run executable
./foo
Posted by: Guest on November-05-2021

Browse Popular Code Answers by Language