Gcc invocation to compile several source files into a single executable
A. gcc -o myApp file1.c file2.c myApp.c
B. gcc -c file1.c file2.c myApp.c
C. gcc -link file1.c file2.c myApp.c
D. gcc -build file1.c file2.c myApp.c

Q&A Education