Any general tips to clean up this code?
just seems that I can accomplish the task w/o doing all the checks..
Thank you!
The txt book problem:
(strictly identical arrays) Two arrays list1[] and list2[] are strictly identical if they have the same length and list1[] is equal to list2[] for each[i].
write a function that returns true if list1 and list2 are strictly identical using the following header
1 2
bool strictlyEqual(constint list1[], constint list2[], int size)
Write a test program that prompts the user to enter two lists of integers and disÂplays whether the two are strictly identical. The sample runs follow. Note that the first number in the input indicates the number of the elements in the list. This number is not part of the list. Assume the list size is maximum