Problem:
Question: Write tableDiff, a function that compares two arrays of integers and returns the subscript of the first place they differ. If the arrays are the same, the function returns -1. First write it using array subscripting and then using pointers.
Can only use pointers throughout the entire program. Also include a function to read in an array and a function to print the elements of an array.
Any help would be greatly appreciated!