Question: 1. If you are going to compile a main.cpp , while your main() in main.cpp uses a function defined in another file funcdef.cpp , which
1. If you are going to compile a main.cpp, while your main() in main.cpp uses a function defined in another file funcdef.cpp, which of the following command is correct?
A) g++ main.cpp funcdef.cpp -o func
B) g++ funcdef.cpp main.cpp -o func
C) g++ main.cpp -o func
D) g++ main.cpp -o funcdef.cpp func 2. What is argv[0]?
A) This syntax is illegal
B) The first argument to the program
C) The name of the program
D) The number of arguments to the program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
