Nitin400

While loop

Jul 6th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a=5;
  5.     while (a<9)
  6.     {
  7.         printf("\n the value of a =%d",a);
  8.         a++;
  9.     }
  10.     return 0;
  11. }
Add Comment
Please, Sign In to add comment