Patter 6: reverse pyramid star program in c

Program to print below pattern ( Reverse Pyramid Star pattern ) :

Write a C Program to print the Reverse Pyramid star pattern. We are going to use the C language for loops to print the pattern.Reverse-Pyramid-star-pattern-in-c

Here is the sample output of the program. Here user provided input as 5. So we have rows for the pyramid shape.

* * * * *
 * * * *
  * * *
   * *
    *

Reverse Pyramid Star Program :

More C 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...

1 Response

  1. sandeep.vattepu says:

    how can we print inverse pyramid with numbers

Leave a Reply