Advertisement
Guest User

Untitled

a guest
May 25th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.11 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.     int x = 10;
  5.     while (x --> 0)
  6.     {
  7.         printf("%d ", x);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement