Advertisement
Abid_Tarafder

a to z

Nov 15th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     char ch;
  5.  
  6.     for(ch='a';ch<='z';ch=ch+1)
  7.     {
  8.         printf("%c\n",ch);
  9.     }
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement