Abdullah_A_lAsif_001

print a to z

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