Question

Which of the following function prototypes is correct?
(a) double average(int, ...)
(b) double average(..., int);
(c) double average(int, ...);
(d) double average(int, ... , int);

Answer

This answer is hidden. It contains 3 characters.