Chapter:

Pattern-Printing-in-C

C Program to print half pyramid a using numbers

1

1 2

1 2 3

1 2 3 4

1 2 3 4 5

Source Code

#include
int main() {
    int i,j,rows;
    printf("Enter number of rows:\n");
    fflush(stdout);
    scanf("%d", &rows);
    for (i=1; i<=rows; ++i) {
        for (j=1; j<=i; ++j)
        { printf("%d ",j); }
        printf("\n");
    }
    return 0;
}
Show More

All Chapters

View all Chapter and number of question available From each chapter from C-programming-