Advertisement
Guest User

WHILE

a guest
Oct 24th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int x;
  6. x = 0;
  7.  
  8. while(x<=10)
  9. {
  10. printf("%d", x);
  11. printf("\n");
  12. x = x+1;
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement