Skip to content
  • test
  • Hello world!

Example 5: Inverted half pyramid of numbers

1 2 3 4 5
1 2 3 4 
1 2 3
1 2
1

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("%d ", j); } printf("\n"); } return 0; }
Categories Uncategorized
Post navigation
Example 4: Inverted half pyramid of *
Example 6: Full Pyramid of *

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