fork download
  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. int main(void) {
  5. struct tm test_datetime = {
  6. .tm_mday = -1,
  7. .tm_mon = 2 - 1,
  8. .tm_year = 2020 - 1900,
  9. }; /* 0/2/2020 */
  10.  
  11. mktime(&test_datetime);
  12. puts(asctime(&test_datetime));
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Thu Jan 30 00:00:00 2020