Question: in c please not c++ Implement a function named rand matrix with the following header yoid rand matrix (int x[][8], int size) - The function
Implement a function named rand matrix with the following header yoid rand matrix (int x[][8], int size) - The function should fill the 2-dimensional array named x with random integer values in the range 20 to 80 (inclusive) Iruplement a function named matrix processing with the following header: sizel, int size2) matrix, processing (int first [] [8], int second [] [8], int Where - sizel is the number of nows of the first 2-dimensional array - size2 is the number of rows of the second 2dimensional array - The function should find and print each value that exists in the second 2-dimensional array that does not exist in the first 2dimensional array Implement the main function that performs the following: - Defines an integer 2D arrays a of size 9XB o Defines an integer 2D arrays b of size 7 X 8 o Uses the function rand matrix defined above to randomly initialize the array a. - Uses the function rand matrix defined above to randonly initialize the array b. - Properly calls the function matrix processing to find and print each value that exists in the array b that does not exist in the array a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
