Homec Write a program to print alphabet from a-z Vikram somai December 26, 2020 0 Comments Facebook Twitter Print alphabet from a-z #include<stdio.h>#include<conio.h>main() { int i; for(i=97;i<=122;i++) { printf("%c",i); } printf("\n"); } Tags c c++ Facebook Twitter
Post a Comment
If you have any doubts, Please let me know
Thanks!