Advertisement
Vladpepe

Untitled

Dec 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include "stdio.h"
  2.  
  3. void unsignedToString(char *dst, unsigned u);
  4.  
  5. int main() {
  6.     char dst[10];
  7.     unsigned u = 137892;
  8.  
  9.     unsignedToString(dst, u);
  10.  
  11.     printf("%s", dst);
  12.     return 0;
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement