Question: C++ programming, using namespace std; and Write a function similarity that takes in 2 arrays of int type and their sizes and returns true if
C++ programming, using namespace std; and
Write a function similarity that takes in 2 arrays of int type and their sizes and returns true if the two arrays are identical and returns false if two arrays are not same.
bool similarity(int arr1[ ], int size1, int arr2[], int size2)
Example:
arr1= {1, 4, 6, 7, 23, 3}
arr2 = {1, 4, 6, 7, 23, 3}
return value: true
arr1= {1, 4, 6, 7, 23, 3}
arr2 = {1, 14, 6, 7, 23, 3}
return value: false
arr1= {1, 4, 6, 7, 23, 3}
arr2 = {1, 17, 3}
return value: false
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
