1. 

The macro va_arg is used to extract an argument from the variable argument list and advance the pointer to the next argument.

A. True
B. False

2. 

In a function that receives variable number of arguments the fixed arguments passed to the function can be at the end of argument list.

A. True
B. False

3. 

A function that receives variable number of arguments should use va_arg() to extract arguments from the variable argument list.

A. True
B. False

4. 

For a function receives variable number of arguments it is necessary that the function should receive at least one fixed argument.

A. True
B. False

5. 

A function that receives variable number of arguments should use va_arg() to extract the last argument from the variable argument list.

A. True
B. False