32. Program to Display Character from A to Z Using Loop Get link Facebook X Pinterest Email Other Apps - August 26, 2015 void main(){char ch; clrscr(); for(ch='A';ch<='Z';ch++) printf("%c\t",ch); getch(); } Get link Facebook X Pinterest Email Other Apps Comments Unknown1:25 PM//Display A to Z alphabates using Loop#include#includevoid main(){char c;clrscr();for(c='A';c<='Z';c++)printf("%c\t",c);getch();}ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
//Display A to Z alphabates using Loop
ReplyDelete#include
#include
void main()
{
char c;
clrscr();
for(c='A';c<='Z';c++)
printf("%c\t",c);
getch();
}