Question: In a c++ program, create a Time class. Each object of this class will represent a specific time of day, storing the hours, minutes and
In a c++ program, create a Time class. Each object of this class will represent a specific time of day, storing the hours, minutes and seconds as integers. Include a function set time(int h, int m, int s) to set the initial values of an object, a function advance(int h, int m, int s) to advance the current time of an existing object, a function reset(int h, int m, int s) to reset the current time of an existing object, and a show() function to show the current time of an object. Also write a main program to implement the Time class by using its member functions.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
