/* ctime example */ #include #include #include int main () { time_t rawtime; time ( &rawtime ); struct tm *local = localtime(&rawtime); printf ( "The current local time is: %04d-%02d-%02d\n", local->tm_wday, local->tm_mon + 1, local->tm_mday ); printf ("%d\n", 8*sizeof(int8_t*)); printf ("%d\n", 8*sizeof(int8_t)); return 0; }