C Program to print half pyramid using alphabets
C Program to print half pyramid using alphabets A B B C C C D D D D E E E E E Let’s see the program code #include <stdio.h> int main() { int i, j; char input, alphabet = ‘A’; printf(“Enter the uppercase character you want to print in last row: “); scanf(“%c”,&input); for(i=1; … Read more