fork(1) download
  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. int main()
  5. {
  6. char buf[100];
  7. struct tm T;
  8. int m;
  9. for(m=1;m<=12;++m)
  10. {
  11. T.tm_mday=1;
  12. T.tm_mon=m-1;
  13. T.tm_year=0;
  14. strftime(buf,sizeof(buf),"%B",&T);
  15. printf("%s\n",buf);
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
January
February
March
April
May
June
July
August
September
October
November
December