fork download
  1. #include <ctime>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6. std::time_t sec = std::time(NULL);
  7. std::cout << std::asctime(std::localtime(&sec));
  8. }
Success #stdin #stdout 0.01s 2812KB
stdin
Standard input is empty
stdout
Sat Nov 10 12:41:54 2012