Answers for "compile c++ file"

C++
3

compile c++ program

$ g++ -o <name-you-want-to-give> source.cpp
$ ./myprogram
Posted by: Guest on April-26-2020
0

c++ compile to exe command line

gcc sourcefile_name.c -o outputfile.exe
Posted by: Guest on October-03-2020
0

compile in c++

$ g++ -o <name-you-want-to-give> source.cpp
Posted by: Guest on April-26-2021

Browse Popular Code Answers by Language