Question: Write a C program which fills a matrix of size NxM with random integers between 0 and 100 and sorts the matrix in descending order.

Write a C program which fills a matrix of size NxM with random integers between 0 and 100 and sorts the matrix in descending order. N and M are the numbers of rows and columns entered by the user. The maximum number of rows and columns can be 100.

Your program should implement the following functions:

a. void fillMatrix(int A[][],int N, int M): To generates NxM random numbers between 1 and 100 and stores them in array A.

b. int sortMatrix(int A[][],int rowsize, int colsize): To sort the input array c. void displayMatrix(int A[][],int N, int M): To display the array elements (N rows and M columWrite a C program which fills a matrix of size NxM withns).?

(N rows and M columns). Sample Interaction: Enter number of rows: 100 Invalid size! Enter number of rows: Enter number of c lumns: 3 Before Sorting: 3 1 8 2 4 56 3 7 9 After sorting: 9 8 7 6 5 4 3 2 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!