comparing array in c code example
Example 1: c compare 2 array
for(loop = 0; loop < arrays; loop++)
if(array1[loop] != array2[loop])
printf("....");
Example 2: equal elements in two arrays in c++
bool equalelementsintwoarrays(int A[], int B[], int N) {
sort(A, A+N);
sort(B, B+N);
int i = 0, j = 0;
while (i < N && j < N) {
if (A[i] == B[j]) return true;
else if (A[i] > B[j]) j++;
else i++;
}
return false;
}