Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
#include
// Import the ctime library using namespace std; int main () { struct tm datetime; time_t timestamp; datetime.tm_year = 2023 - 1900; // Number of years since 1900 datetime.tm_mon = 12 - 1; // Number of months since January datetime.tm_mday = 17; datetime.tm_hour = 12; datetime.tm_min = 30; datetime.tm_sec = 1; // Daylight Savings must be specified // -1 uses the computer's timezone setting datetime.tm_isdst = -1; timestamp = mktime(&datetime); cout << ctime(×tamp); return 0; }
Sun Dec 17 12:30:01 2023