Answers for "c++ get system date"

C++
0

c++ get system date

#include <string>
#include <sstream>
#include <iostream>

time_t t = time(0);   // get time now
struct tm * now = localtime( & t );

ostringstream osTime;
osTime << (now->tm_year + 1900) <<
   (now->tm_mon + 1) <<
   now->tm_mday <<
   "\n";

cout << osTime.str();
Posted by: Guest on April-13-2021

Browse Popular Code Answers by Language