Skip to content

Instantly share code, notes, and snippets.

@geneotech
Created August 1, 2016 12:46
Show Gist options
  • Save geneotech/b6e340d16c5ce4ff892c53aab766111b to your computer and use it in GitHub Desktop.
Save geneotech/b6e340d16c5ce4ff892c53aab766111b to your computer and use it in GitHub Desktop.
czas.cpp
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
time_t now = time(0);
tm ltm;
localtime_s(&ltm, &now);
int godziny = ltm.tm_hour;
int minuty = ltm.tm_min;
system("pause");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment