Answer:
d) intpoint = new int;
Explanation:
We have an integer pointer named intpoint. So to create a new integer using new keyword the syntax is as following:-
pointer variable = new data type;
Data type is integer so we will use int. Pointer variable is intpoint.
So to declare it we have to write:-
intpoint = new int;
So the matching option is d