![]() |
VOOZH | about |
The difftime() is a C Library function that returns the difference in time, in seconds(i.e. ending time - starting time). It takes two parameters of type time_t and computes the time difference in seconds. The difftime() function is defined inside the <time.h> header file.
The syntax of difftime() function is as follows:
double difftime(time_t time2, time_t time1);
The difftime() function takes two parameters:
where time1 and time2 are variables of type time_t which is a predefined structure for calendar times.
Difference is 6.00 seconds