Advertisement
yoyo106

While loop

Mar 26th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     int x=1;
  7.     while (x<=10)
  8.     {
  9.         printf("%d   ",x);
  10.         x++;
  11.  
  12.     }
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement