Question: In C program, without pointers..... (15 points) Write a program that contains the function elapsedTime that takes as its arguments two time structures and returns
In C program,
without pointers.....

(15 points) Write a program that contains the function elapsedTime that takes as its arguments two time structures and returns a time structure that represents the elapsed time (in hours, minutes, and seconds) between the two times (this elapsed time cannot be greater than 24 hours). For example, the call elapsedTime (timel, time2) where timel represents 3:45:15 and time2 represents 9:44:03, should return a time structure that represents 5 hours, 58 minutes, and 48 seconds. Consider using the following time structure: struct time int hours; int minutes; int seconds; b: Time should be represented in military time (24 hour clock) The program should prompt the user for two times, and return the elapsed time Sample input/output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
