Mega Code Archive

 
Categories / C++ Tutorial / Data Types
 

Convert now to tm struct for local timezone

#include <iostream> #include <ctime> #include <cstdlib> using namespace std; int main( ) {   // Current date/time based on current system   time_t now = time(0);   // Convert now to tm struct for local timezone   tm* localtm = localtime(&now);   cout << "The local date and time is: " << asctime(localtm) << endl; } The local date and time is: Mon Apr 23 13:17:32 2007