Pattern 36: C Program Print Inverted Triangle Pattern ( Number Pattern )

Inverted Triangle Pattern :

Write a C Program to print below Inverted Triangle Pattern on the console using the for loops.

Here are the example outputs

Example 1:

Enter how many rows you want : 5
 5 5 5 5 5
 4 4 4 4
 3 3 3
 2 2
 1

Example 2:

Enter how many rows you want : 9
9 9 9 9 9 9 9 9 9
8 8 8 8 8 8 8 8
7 7 7 7 7 7 7
6 6 6 6 6 6
5 5 5 5 5
4 4 4 4
3 3 3
2 2
1

📢  Note: This program is one of the Series of Number pattern programs in C.

Inverted Triangle Pattern Program:

Program Output:

Similar Star pattern programs :

Venkatesh

Hi Guys, I am Venkatesh. I am a programmer and an Open Source enthusiast. I write about programming and technology on this blog.

You may also like...

Leave a Reply