Advertisement
mujahidul_islam

4

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