Question

Q3[C++11]: Assuming the following constructor is provided for class Time
explicit Time( int = 0, int = 0, int = 0 );
which of the following is not a valid way to initialize a Time object?
a. Time t1;
b. Time t2{ 22, 40 };
c. Time t3( 22, 40 );
d. (a), (b) and (c) are all valid ways to initialize a Time object.

Answer

This answer is hidden. It contains 54 characters.