Home » C Programming » Variable Number of Arguments

Point out the error in the following program. #include #include fun(...); int main() { fun(3, 7, -11.2, 0.66); return 0; } fun(...) { va_list ptr; int num; va_start(ptr, n); num = va_arg(ptr, int); printf("%d", num); }

Correct Answer: Error: Invalid declaration of fun(...)

Explanation:

There is no fixed argument in the definition fun()

Next Question→

More Questions from Variable Number of Arguments

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion