#include <stdio.h> #include <time.h> int main () { while(true) { time_t rawtime; struct tm * timeinfo; time ( &rawtime ); timeinfo = localtime ( &rawtime ); printf("The current date/time is: %s", asctime (timeinfo)); } }