Skip to content
  • test
  • Hello world!

Example 2: Half Pyramid of Numbers

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

C Program

#include int main() { int i, j, rows; printf("Enter the number of rows: "); scanf("%d", &rows); for (i = 1; i <= rows; ++i) { for (j = 1; j <= i; ++j) { printf("%d ", j); } printf("\n"); } return 0; }
Categories Uncategorized
Post navigation
C Program to Print Floyd’s Triangle
Example 3: Half Pyramid of Alphabets

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