C Programming - Command Line Arguments - Discussion

Discussion Forum : Command Line Arguments - General Questions (Q.No. 3)
3.
What do the 'c' and 'v' in argv stands for?
'c' means argument control 'v' means argument vector
'c' means argument count 'v' means argument vertex
'c' means argument count 'v' means argument vector
'c' means argument configuration 'v' means argument visibility
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
9 comments Page 1 of 1.

Ranjith karthick said:   1 decade ago
What is the necessity to use command line arguments in C?

Pravin said:   1 decade ago
Will you please provide the elaboration of Command Line Argument with Suitable Ex?

Suji shri said:   1 decade ago
Command-line arguments are given after the name of a program in command-line OS like DOS or Linux, and are passed in to the program from the OS. To use command line arguments in your program, you must understand the full declaration of the main(), which previously has accepted no arguments.

Niraj said:   1 decade ago
argc -----number of argument.
argv------argument
if u run the program as "prog a b c"

argc==4

argv[0]=prog(executable file)
argv[1]=a
and so on.......

Vinod thete said:   1 decade ago
What is the use of argc and argv?

Shailja said:   1 decade ago
Tell me about command line argument.

Msquarme said:   1 decade ago
This is not true for such programming and will not support the ansi c programming language.

Ajay said:   1 decade ago
How can you say that the command line argv & argc are stand for this type of answer?

Diwakar said:   1 decade ago
Tell me about command line argument.

Post your comments here:

Your comments will be displayed after verification.