Skip to content
  • test
  • Hello world!

Example 4: Inverted half pyramid of *

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

C Program

#include int main() { int i, j, rows; printf("Enter the number of rows: "); scanf("%d", &rows); for (i = rows; i >= 1; --i) { for (j = 1; j <= i; ++j) { printf("* "); } printf("\n"); } return 0; }
Categories Uncategorized
Post navigation
Example 3: Half Pyramid of Alphabets
Example 5: Inverted half pyramid of numbers

Archives

  • September 2020

Recent Posts

  • C Functions
  • C Basic Syntax – Statements, keywords, identifiers & comments Tutorial
  • Example 8: Inverted full pyramid of *
  • Example 7: Full Pyramid of Numbers
  • Example 6: Full Pyramid of *
© 2020 Your WordPress! Site hosted with CloudAccess.net • Powered by GeneratePress
Scroll back to top