Write a program to print alphabet from A-Z

main()

{

 int i;

 for(i=65;i<=90;i++)

 {

 printf("%c\n",i);

 }

}

Post a Comment

If you have any doubts, Please let me know
Thanks!

Previous Post Next Post