C Programming - Command Line Arguments - Discussion
|
|
|
|
Read more:"Everything you can imagine is real."
- Pablo Picasso
|
| 3. |
What do the 'c' and 'v' in argv stands for? |
| [A]. |
'c' means argument control 'v' means argument vector | | [B]. |
'c' means argument count 'v' means argument vertex | | [C]. |
'c' means argument count 'v' means argument vector | | [D]. |
'c' means argument configuration 'v' means argument visibility |
Answer: Option B
Explanation:
No answer description available for this question.
|
|
Diwakar said:
(Wed, Oct 6, 2010 06:50:09 AM)
|
|
| |
| Tell me about command line argument. |
|
Ajay said:
(Fri, Oct 8, 2010 04:16:48 PM)
|
|
| |
| How can you say that the command line argv & argc are stand for this type of answer? |
|
Msquarme said:
(Mon, Nov 8, 2010 04:28:31 AM)
|
|
| |
| This is not true for such programming and will not support the ansi c programming language. |
|
Shailja said:
(Sat, May 7, 2011 01:00:34 AM)
|
|
| |
| Tell me about command line argument. |
|
Vinod Thete said:
(Mon, Aug 8, 2011 03:58:13 PM)
|
|
| |
| What is the use of argc and argv? |
|
Niraj said:
(Sun, Sep 4, 2011 11:59:41 PM)
|
|
| |
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....... |
|
|