fork(2) download
  1. #include <time.h>
  2.  
  3. f(){time_t t=time(0)+8640000;char b[9];strftime(b,9,"%d-%m-%y",localtime(&t));puts(b);}
  4.  
  5. int main(){
  6. f();
  7. }
  8.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
15-07-17