fork download
  1. #include <stdio.h>
  2.  
  3. #include <time.h>
  4. f(){time_t t=time(0);struct tm*tm=localtime(&t);tm->tm_mday+=100;t=mktime(tm);puts(ctime(&t));}
  5.  
  6. int main(void)
  7. {
  8. f();
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
Mon Jul 17 02:46:39 2017