I have to find the error in the following code segments and fix it. Explain every error and assume the following has already happened,
int *zPtr;
int *aPtr = NULL;
int number, i;
int z [5] = {1, 2, 3, 4, 5};
zPtr = z;
(a) number = zPtr; /* use pointer to get the first value of the array */
(b)...