InterviewSolution
Saved Bookmarks
| 1. |
Which of the following function with ellipsis are illegal?(a) void func(…);(b) void func(int, …);(c) void func(int, int, …);(d) none of the mentionedI got this question during an interview.This key question is from Variable Length Argument topic in portion Input and Output in C of C |
|
Answer» RIGHT choice is (a) VOID func(…); The explanation is: NONE. |
|