I just wandered if there is a way to constantly update the time once it has been displayed on a console application. I am using the following code to display the time:
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ("The current time is %s\n", asctime (timeinfo));
Thanks in advance for any help,
climberboy