Description:
Print a number pyramid.
Print a number pyramid.
C Code
#include <stdio.h>
int main() {
for (int i = 1; i <= 5; i++) {
for (int j = 1; j <= i; j++) printf("%d ", j);
printf("\n");
}
return 0;
}
Expected Output
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5