I went through this forum and got to know that the time() does this. But, I'm not quite sure I understand how to use this function.
Here is an outline of the code that I have so far
/* difftime example */
#include <stdio.h>
#include <ctime>
#include <stdlib.h>
int main ()
{
time_t start,end;
char szInput [256];
double dif;
time (&start);
printf ("Please, enter your name: ");
gets (szInput);
time (&end);
dif = difftime (end,start);
printf ("Hi %s.\n", szInput);
printf ("It took you %.2lf seconds to type your name.\n", dif );
return 0;
}
//printf does the same as cout here and just adject the code to look like more of the c++ you know..not my code