Character Rectangle Structure Posted: 26 Dec 2013 11:42 PM PST Q. Write a C program to display the following character rectangle structure/pattern/design as: ABCDEEDCBAABCD__DCBAABC____CBAAB______BAA________A Ans. /*c program for character rectangle pattern*/#include<stdio.h>int main(){ char ch,r='A',c,sp; printf("Enter any character : "); scanf("%c",&ch); if(ch>='a' && ch<='z') ch=ch-32; printf("\n"); for(; ch>='A'; ch--,r++) { for(c='A'; c<=ch; c++) printf("%c",c); for(sp=r; sp>'A'; sp--) printf("__"); for(c=ch; c>='A'; c--) printf("%c",c); printf("\n"); } getch(); return 0;} /*************************************************************The output of above program would be: *************************************************************/
| Figure: Screen shot for character rectangle structure C program |
|
Post a Comment