Google News
logo
MySQL - Quiz(MCQ)
What is the option for specifying the executable name while compiling with gcc?
A)
-a
B)
-b
C)
-o
D)
-e

Correct Answer :   -o


Explanation : When a C program is compiled with gcc, the option -o is issued in order to specify the name of the executable that is created after compilation. The default name given is ‘a.out’.

Advertisement