Home » C Programming » Functions » Question
  1. Which of the following function with ellipsis are illegal?
    1. void func(int, int, …);
    2. void func(int, …);
    3. void func(…);
    4. All of above
    5. None of these
Correct Option: C

void func(…);



Your comments will be displayed only after manual approval.