fork download
  1. #include <iostream>
  2. #include<ctime>
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7. tm time {0, 0, 0, 21, 7, 2015 - 1900};
  8. mktime(&time);
  9. cout << time.tm_wday << endl;
  10. }
  11.  
Success #stdin #stdout 0s 3228KB
stdin
Standard input is empty
stdout
5