fork download
  1. #include <stdio.h>
  2. #include <time.h>
  3. int main(void)
  4. {
  5. time_t t;
  6. struct tm *tm;
  7. time(&t);
  8. tm = localtime(&t);
  9. puts(asctime(tm));
  10. }
Runtime error #stdin #stdout 0s 2424KB
stdin
Standard input is empty
stdout
Wed Jan  8 01:25:26 2014