Q. Which of the following is not a valid pointer type?
β
Correct Answer: (D)
string *p;
Explanation: string is not a valid C type; use char* instead.