Q. Which of the following will declare a pointer to integer?
β
Correct Answer: (B)
int *p;
Explanation: int *p declares a pointer to an integer.