Advertisement
Guest User

loop

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