Advertisement
samrina_sarkar_7

Untitled

Jun 20th, 2019
134
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 i;
  5.     i=1;
  6.     while(i<=10)
  7.     {
  8.         printf("%d\n",i);
  9.         ++i;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement