Advertisement
tourniquet

2 int var to char

Jan 22nd, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. int main () {
  2.         char getConvertedTime[5] = {};
  3.  
  4.         SYSTEMTIME localTime;
  5.         GetLocalTime ( &localTime );
  6.      
  7.         sprintf( getConvertedTime, "%d:%d", localTime.wHour, localTime.wMinute );
  8.  
  9.         return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement