Computer Science, asked by niveditavaity926, 20 days ago

how will you compile a program when the mouth isn't responding​

Answers

Answered by ArchBTW
0

Answer:

You can compile a C program by the following command

gcc fileName.c

Compile a C++ program by

g++ fileName.cpp

Use the -o flag for changing the binary name, otherwise it is usually a.exe (in windows) or a.out (in Linux)

Similar questions