pattern 33: C Program to print the below number pattern using the for loops

Decreasing Number pattern:

Write a C Program to print below Decreasing number pattern on the console.

Example 1:

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

Example 2:

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

Also Check:

Program to print Decreasing Number pattern:

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