Answer:
double * p1;
double * p2;
Step-by-step explanation:
A pointer is a variable that holds the address location of other variables. It is defined with the asterisk character in the middle of the variable type and name.
The p1 and p2 pointers above are pointers that hold the memory addresses of two different double or float point numbers.