1 Going Compile Maincpp Main Maincpp Uses Function Defined Another File Funcdefcpp Followi Q43896662
1. If you are going to compile amain.cpp, while yourmain() in main.cpp usesa 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
Expert Answer
Answer to 1. If you are going to compile a main.cpp, while your main() in main.cpp uses a function defined in another file funcdef…
OR