C Programming - Variable Number of Arguments

Exercise : Variable Number of Arguments - True / False Questions
1.
The macro va_arg is used to extract an argument from the variable argument list and advance the pointer to the next argument.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.

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.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
A function that receives variable number of arguments should use va_arg() to extract arguments from the variable argument list.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
For a function receives variable number of arguments it is necessary that the function should receive at least one fixed argument.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
A function that receives variable number of arguments should use va_arg() to extract the last argument from the variable argument list.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.