Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1.     SYSTEMTIME czasSystemu = {0};
  2.     GetLocalTime(&czasSystemu);
  3.  
  4.     char godzina[10];
  5.     char minuta[10];
  6.     char sekundy[10];
  7.     std::string tmp;
  8.     int test= 0;
  9.  
  10.     _itoa_s(czasSystemu.wHour,godzina,10);
  11.     _itoa_s(czasSystemu.wMinute,minuta,10);
  12.     _itoa_s(czasSystemu.wSecond,sekundy,10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement