Calculates the difference between two calendar times.
#include <time.h>
double difftime (
time_t t1,
time_t t2);
(IN) Specifies the ending calendar time.
(IN) Specifies the beginning calendar time.
Returns the difference between the two times in seconds.
The difference is computing by subtracting t2 from t1.