Answer (Choose 1 answer)
int main () { ;
int *pp=p+1;
return(0);
} Which mistake made with the code above.
A. Not including header files
B. Not assigning a pointer to memory address before using it.
C. main() cannot return int value.
D. + operator cannot use with pointer.
Exit 16