Problem
Given the following declaration:
int firstGroup[6] = {6,5,2,3,4,9};
int secondGroup[6] = {36,20,4,9,18,25};
Write a function definition for mulSame(). The function receives both arrays. Compare each element of both arrays at the same index when the values are even, then multiply both values and store the result into the array Group[] which locally declared in the function. Then, display the contents of the array Group[ ]