In this article, we have take a look at how to print a rectangular matrix of size 2 * 3 with integers in C Programming Language with numbers from 1 to 6.
The pattern is as follows:
246135Table of contentsProblem statementApproach to solveImplementationOutputProblem statement
In this problem, we have to print the following rectangular matrix of size 2*3:
246135Approach to solve the problem
Following is the approach to solve this problem:
We can solve this problem by using 2D array....
Published on December 30, 2022 07:04