Alphabet Pattern 11-Inverted Pyramid pattern using alphabets in C programming
In this program, we will see the Inverted Pyramid pattern using alphabets in C programming language. Please look into the program.
ABCDE ABCD ABC AB A
The C program for the Inverted Pyramid or triangle pattern using alphabets is as follows:
#include <stdio.h> int main() { int a, b; for(a=5;a>=1;a--) { for(b=1;b<=a;b++) { printf("%c",'A' + b-1); } printf("n"); } getch(); return 0; }