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
using namespace std; int main() { struct tm date; time_t now; time_t before; // Create a timestamp for right now time(&now); // Create a timestamp for 5 hours ago date = *localtime(&now); date.tm_hour -= 5; before = mktime(&date); // Calculate the difference between the two timestamps in seconds cout << difftime(now, before); return 0; }
18000