how to get current date from c++ code example
Example 1: get current date in c++
#include <ctime>
#include <iostream>
int main() {
std::time_t t = std::time(0);
std::tm* now = std::localtime(&t);
std::cout << (now->tm_year + 1900) << '-'
<< (now->tm_mon + 1) << '-'
<< now->tm_mday
<< "\n";
}
Example 2: c++ get system date
#include <string>
#include <sstream>
#include <iostream>
time_t t = time(0);
struct tm * now = localtime( & t );
ostringstream osTime;
osTime << (now->tm_year + 1900) <<
(now->tm_mon + 1) <<
now->tm_mday <<
"\n";
cout << osTime.str();