Advertisement
Guest User

Mysterious C :)

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