fork(12) download
  1. #include <iostream>
  2. #include <ctime>
  3.  
  4. int main()
  5. {
  6. char out[9];
  7. std::time_t t=std::time(NULL);
  8. std::strftime(out, sizeof(out), "%Y%m%d", std::localtime(&t));
  9. std::cout<<out;
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 2812KB
stdin
Standard input is empty
stdout
20121223