fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include <iomanip>
  5.  
  6. int main() {
  7. auto currentTime = std::time(nullptr);
  8. auto currentTime2 = std::time(nullptr);
  9.  
  10. std::stringstream ss;
  11. std::stringstream ss2;
  12.  
  13. ss << std::put_time(std::localtime(&currentTime), "%Y-%m-%dT%H:%M:%S %z %Z");
  14. ss2 << std::put_time(std::gmtime(&currentTime2), "%Y-%m-%dT%H:%M:%S %z %Z");
  15. std::cout << " time now local = " << ss.str() << std::endl;
  16. std::cout << " time now gm = " << ss2.str() << std::endl;
  17. }
Success #stdin #stdout 0s 4288KB
stdin
Standard input is empty
stdout
 time now local = 2019-10-08T14:08:26 +0000 UTC
 time now gm    = 2019-10-08T14:08:26 +0000 GMT