Mega Code Archive

 
Categories / C / Development
 

Return difference between two times

#include <stdio.h> #include <time.h> int main () {   time_t start, end;   char str[256];   double dif;   time (&start);   printf ("Please, enter your name: ");   gets (str);   time (&end);      dif = difftime (end, start);      printf ("You have taken %.2lf seconds to type your name.\n", dif );     return 0; }