adplus-dvertising
frame-decoration

Question

argv[0] in command line arguments, is

a.

The name by which the program was invoked

b.

The name of the files which are passed to the program

c.

Count of the arguments in argv[] vector

d.

None of the mentioned

Answer: (a).The name by which the program was invoked

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. argv[0] in command line arguments, is

Similar Questions

Discover Related MCQs

Q. A program that has no command line arguments will have argc

Q. The index of the last argument in command line arguments is

Q. How to call a function without using the function name to send parameters?

Q. Correct syntax to pass a Function Pointer as an argument

Q. Which of the following is not possible in C?

Q. One of the uses for function pointers in C is

Q. What does this declaration say?
int (*(*y)())[2];

Q. Read the following expression?
void (*ptr)(int);

Q. Which of the following expression is true for the following?

ptr is array with 3 elements of pointer to function returning pointer of int

Q. What do the following declaration denote?
int **ptr;

Q. What do the following declaration denote?
char *str[5];

Q. Comment on the following declaration?

int (*ptr)(); // i)
char *ptr[]; // ii)

Q. Is the below declaration legal?
int* ((*x)())[2];

Q. Let x be an array. Which of the following operations are illegal?

Q. What is the maximum number of dimensions an array in C may have?

Q. What does the following declaration mean?
int (*ptr)[10];

Q. Which of the following statements are correct about an array?

1. The array int num[26]; can store 26 elements.
2. The expression num[1] designates the very first element in the array.
3. It is necessary to initialize the array at the time of declaration.
4. The declaration num[SIZE] is allowed if SIZE is a macro.

Q. int a[5] = {1,2,3}

What is the value of a[4]?

Q. The function sprintf() works like printf(), but operates on ..........

Q. Choose the best answer.
Prior to using a pointer variable