C++ Program to Print Inverted Star Pyramid

Write a C++ Program to Print Inverted Star Pyramid with an example. This C++ program allows us to enter the rows and the symbol to print in the inverted pyramid pattern. Next, the nested for loops will iterate between total rows and 1 to print the * (or given symbol). Here, if k != (2 … Read more