fork download
  1. #include <iostream>
  2. #include <time.h>
  3.  
  4. int main() {
  5. char myTime[12];
  6. time_t now = time(0);
  7. strftime(myTime, sizeof(myTime), "%H:%M:%S", localtime(&now));
  8. std::cout << " Updated @ " << myTime;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 3476KB
stdin
Standard input is empty
stdout
 Updated @ 15:23:02