Get the current time in C [duplicate]

Copy-pasted from here: /* localtime example */ #include <stdio.h> #include <time.h> int main () { time_t rawtime; struct tm * timeinfo; time ( &rawtime ); timeinfo = localtime ( &rawtime ); printf ( “Current local time and date: %s”, asctime (timeinfo) ); return 0; } (just add void to the main() arguments list in order … Read more