Pattern #2

pattern


Program:

#include <stdio.h>


void main()

{

    int rows, i, j, number = 1;


    printf("Enter the number of rows: ");

    scanf("%d", &rows);


    for (i = 1; i <= rows; i++)

    {

        for (j = 1; j <= i; ++j)

        {

            printf("%d ", number);

            ++number;

        }

        printf("\n");

    }

}


Output:

1

23

456

78910


Drafted on 🌏 by,

Jal


peace

Comments

Popular posts from this blog

C program to read and display book information using structure

Count positive, negative and zero values in an array

Maximum value from array