What are the built-in operations on classes? (3)
What is the main difference between a struct and a class? (8)
Given the definition of the class clockType with constructors (as described in this chapter), what is the output of the following C++ code? (1, 2, 3, 5, 7)
clockType myClock(10, 16, 59);
clockType yourClock;
myClock.incrementSeconds();
myClock.printTime(); cout <>
yourClock.setTime(23, 59, 29);
yourClock.printTime();
cout <>
yourClock.incrementMinutes();
yourClock.printTime();
cout <>