C Programming - Variable Number of Arguments
|
|
|
|
Exercise"Actions speak louder than words."
- (Proverb)
|
| 1. |
Can we pass a variable argument list to a function at run-time? |
Answer: Option D
Explanation:
Every actual argument list must be known at compile time. In that sense it is not truly a variable argument list.
|
| 2. |
While defining a variable argument list function we drop the ellipsis(...)? |
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss.
|
| 3. |
Is it necessary that in a function which accepts variable argument list there should be at least be one fixed argument? |
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss.
|
| 4. |
Can we write a function that takes a variable argument list and passes the list to another function? |
Answer: Option A
Explanation:
No answer description available for this question. Let us discuss.
|
| 5. |
Can the fixed arguments passed to the function that accepts variable argument list, occur at the end? |
Answer: Option A
Explanation:
No answer description available for this question. Let us discuss.
|
|
|