(a) Define a structure Time as follows: struct Time { int hours; int minutes; int seconds; };
(b) Define some Time structure variables, for example, ClassTime, Lunchtime and Meet- ingTime.
(c) Fill the above time variables with some values and print it to the screen.
(d) Next, create a function called Increment second which will increment the time by one sec- ond. When the seconds reach 60, you would reset it to 0, and increment the minute by 1. Same for minutes and hours. Print some test cases. The argument to the function will be a Time structure variable.