fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #include <ctime>
  5.  
  6. int main() {
  7.  
  8. tm _tm;
  9. strptime("2017-04-17", "%Y-%m-%d", &_tm);
  10.  
  11. char buf[16];
  12. strftime(buf, sizeof(buf), "%A", &_tm);
  13.  
  14. cout << buf << endl;
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Monday