In the following declaration of main, "int main(int argc,
char *argv[])", to what does argv[0] usually correspond?
1) The first argument passed into the program
2) The program name
3) You can't define main like that
Answers were Sorted based on User's Feedback
Answer / sanish joseph
No guys the ans s 2
it prints d program name:
arguments counts only from 1 nd nt 4m 0
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / vadivel
If the value of argc is greater than 0, the array members
argv[0] through argv[argc-1] inclusive shall contain
pointers to strings, which will be the command line
arguments. argv[0] will contain the program name, argv[1]
the first command line arg, argv[1] the second and so on.
Finally, argv[argc] is guaranteed to the a NULL pointer,
which can be useful when looping through the array.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sumeet sharma
argv[o] the array of strings will point to the name of the
program.
argv[1] will point to the first argument and so on.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is new keyword in oops?
What is polymorphism in oop example?
What is the difference between the c++ & java?
What do we mean by a hidden argument in C++?
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
Why do we use oops?
What are oops functions?
what is the difference between class to class type conversion and copy constructor ?
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
What is encapsulation process?
Why polymorphism is used in oops?
What is conditional Compilation?