Advertisement
zfhridoy47

loop_problem_3

Jun 25th, 2019
114
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.  
  5. char i='a';
  6.  
  7.  while(i<='z')
  8.  {
  9.      printf("%c ", i);
  10.      i++;
  11.  }
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement