The following code is the proper way to compare two arrays t…
The following code is the proper way to compare two arrays to see if their elements are the same: bool CompareArrayElements(int *array1, int *array2){ return (array1 == array2);}
Read Details