C Programming - Command Line Arguments - Discussion

Discussion Forum : Command Line Arguments - True / False Questions (Q.No. 1)
1.
Every time we supply new set of values to the program at command prompt, we need to recompile the program.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
6 comments Page 1 of 1.

Ram said:   1 decade ago
We can need not to recompile the program whenever we supply new set of values.

Kavya said:   1 decade ago
Compiler checks for any syntax error in the program. Execution implements operation to produce result.

@Vikas is right, once object file is created her is no need of recompiling.

Ankita said:   1 decade ago
What is the difference between compilation and execution?

Pritam maske said:   1 decade ago
One of the advantage of command line argument is single time compilation and multiple time execution.

Vikash said:   1 decade ago
Once object file is created, every time when main(..) is called need not be recompile again and again, So answer is false.

Satya said:   1 decade ago
No if you make changes to the program then there only need to compile the program to make new class file.

Post your comments here:

Your comments will be displayed after verification.