Program to Convert Time in Seconds to Hours, Minutes and ... - EazyNotes



Gursharan Singh Tatla

Page No. 1

/* Program to Convert Time in Seconds to Hours, Minutes and Seconds

*/

#include

main() {

long sec, hr, min, t;

printf("\nEnter time in seconds: "); scanf("%ld", &sec);

hr = sec/3600; t = sec%3600; min = t/60; sec = t%60;

printf("\n\nTime is %ld hrs %ld mins %ld secs", hr, min, sec); getch(); }

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download