C Program to Print Downward Triangle Mirrored Alphabets Pattern

In this tutorial, i am going to show you how to print downward triangle mirrored alphabets in c programs.

C Program to Print Downward Triangle Mirrored Alphabets Pattern

#include <stdio.h>
int main()
{
	int rows;
	
	printf("Enter Downward Triangle of Mirrored Alphabets Rows = ");
	scanf("%d", &rows);
	printf("Printing Downward Triangle of Mirrored Alphabets Pattern\n");
	int alphabet = 65;
	for (int i = 0; i <= rows - 1; i++)
	{
		for (int j = i; j <= rows - 1; j++)
		{
			printf("%c ", alphabet + j);
		}
		for (int k = rows - 2; k >= i; k--)
		{
			printf("%c ", alphabet + k);
		}
		printf("\n");
	}
}

The result of the above c program; is as follows:

Enter Downward Triangle of Mirrored Alphabets Rows = 5
Printing Downward Triangle of Mirrored Alphabets Pattern
A B C D E D C B A 
B C D E D C B 
C D E D C 
D E D 
E 

More C Programming Tutorials

a

Leave a Comment