C++ Display current date and time




C++ Display current date and time

#include <iostream>
#include <cmath>
#include <ctime>

using namespace std;

int main()
{

  time_t t = time(NULL);
  tm* timePtr = localtime(&t);

  cout << "seconds= " << (timePtr->tm_sec) << endl;
  cout << "minutes = " << (timePtr->tm_min) << endl;
  cout << "hours = " << (timePtr->tm_hour) << endl;
  cout << "day of month = " << (timePtr->tm_mday) << endl;
  cout << "month of year = " << (timePtr->tm_mon)+1 << endl;
  cout <<"year = " << (timePtr->tm_year)+1900 << endl;
  cout << "weekday = " << (timePtr->tm_wday )<< endl;
  cout << "day of year = " << (timePtr->tm_yday )<< endl;
  cout << "daylight savings = " <<(timePtr->tm_isdst )<< endl;
  cout << endl;
  cout << endl;


   cout << "Date " <<(timePtr->tm_mday)<<"/"<<
  (timePtr->tm_mon)+1 <<"/"<< (timePtr->tm_year)+1900<< endl;
  cout << "Time " << (timePtr->tm_hour)<<":"<< 
  (timePtr->tm_min)<<":"<< (timePtr->tm_sec) << endl;
  return 0;
}

Output

seconds= 17
minutes = 18
hours = 11
day of month = 12
month of year = 7
year = 2018
weekday = 4
day of year = 192
daylight savings = 0
Date 12/7/2018
Time 11:18:17