Question: Given below is a program that finds the common elements in given two 10-element integer arrays (Array1 and Array2), and stores these common elements in

 Given below is a program that finds the common elements in

Given below is a program that finds the common elements in given two 10-element integer arrays (Array1 and Array2), and stores these common elements in a third array called commonArray. Fill in the blanks to help the program work as it should. Note that this program catches all shared elements, even though they may appear at different indexes in these two arrays. For example, if Array1={1,2} and Array2=(2,1), commonArray will contain {1, 2}. int main() { int Array1] = {5, 6, 7, 33, 55, 34, 99, 100, 45, 4); int Array2[] = {13, 4, 6, 11,9,7.5, 2, 55, 88}; int commonArray[10] = 0; // at most all 10 elements will be common, so reserve a 10-element array int commonlndex =0; for (int i = 0; i

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!