Number pattern 12 in C

Write a C program to print the given number pattern using loop. How to print the given number pattern of m rows and n columns using loop in C programming. Logic to print the given number pattern using for loop in C program.

Example

Input

Input rows: 5
Input columns: 5

Output

1  2  3  4  5
6  7  8  9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25

Required knowledge

Basic C programming, Loop

Logic to print the given number pattern

Before we get into detail with the current number pattern I recommend you to go through previous number patterns to get basics of printing number pattern.

Now, once you get acquainted with the basics of printing number pattern look to the pattern carefully and you will notice that for each column number gets printed in an incremented fashion. Hence to print this pattern we will use another variable lets say k which will keep track of the number to be printed. Each time the number gets printed we will increment the value of k to get the next number.
Lets, now implement this on code.

Program to print the given number pattern

/**
 * C program to print number pattern
 */

#include <stdio.h>

int main()
{
    int rows, cols, i, j, k;

    /* Input rows and columns from user */
    printf("Enter number of rows: ");
    scanf("%d", &rows);
    printf("Enter number of columns: ");
    scanf("%d", &cols);

    k = 1;
    for(i=1; i<=rows; i++)
    {
        for(j=1; j<=cols; j++, k++)
        {
            printf("%-3d", k);
        }

        printf("\n");
    }

    return 0;
}

Important note: In the printf(“%-3d”, k); %-3d is used to print an integer with 3 characters width.

Output

Enter number of rows: 5
Enter number of columns: 5
1  2  3  4  5
6  7  8  9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25

Happy coding 😉