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



In the following declaration of main, "int main(int argc, char *argv[])", to what does a..

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

In the following declaration of main, "int main(int argc, char *argv[])", to what does a..

Answer / ram

The answer is the program name.

Is This Answer Correct ?    12 Yes 0 No

In the following declaration of main, "int main(int argc, char *argv[])", to what does a..

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

In the following declaration of main, "int main(int argc, char *argv[])", to what does a..

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

In the following declaration of main, "int main(int argc, char *argv[])", to what does a..

Answer / zubeir

the answer is 1st choice.

Is This Answer Correct ?    8 Yes 8 No

In the following declaration of main, "int main(int argc, char *argv[])", to what does a..

Answer / mahi

my ans is 2.it prints the program name

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

How to Increment the value of the empid E001 for each and every employee by using the programe?

1 Answers   Accenture,


What are the 3 pillars of oop?

0 Answers  


What is inheritance write a program to show use of inheritance?

0 Answers  


WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)

1 Answers   TCS,


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

0 Answers   IBM,






What is static in oop?

0 Answers  


What are the 4 pillars of oop?

0 Answers  


Write a program to sort the number with different sorts in one program ??

0 Answers   NIIT,


Can a destructor be called directly?

0 Answers  


2. Give the different notations for the class.\

0 Answers  


What is multilevel inheritance?

0 Answers  


What are benefits of oop?

0 Answers  


Categories