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);
Q1: One difference between the three-argument version of the get function and the
getline function is that:
a. Only get has a delimiter.
b. The getline function removes the delimiter from the stream.
c. Only get adds the delimiter to the array.
d. getline stores the characters it reads into its character array argument.
Q4: Abstract classes do not necessarily have:
a. A 0 pointer in their vtable.