C program to interchange the rows in the matrix
belongs to collection: C language Two Dimensional (Matrix) solved programs/examples
All Answers
total answers (1)
belongs to collection: C language Two Dimensional (Matrix) solved programs/examples
total answers (1)
Given a matrix, and we have to interchange the specified rows in the matrix using C program.
Program:
The source code to interchange the rows in the matrix is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.
Output:
Explanation:
In the main() function, we created a 3X3 matrix matrix using the 2D array. Then we read row numbers to be exchanged. After that, we interchanged the rows and printed the updated matrix on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer