Guest User

Untitled

a guest
Feb 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. int x = 1023;
  2.  
  3. while (x > 0)
  4. {
  5. printf("%d", x% 10);
  6. x = x /10;
  7. }
Add Comment
Please, Sign In to add comment