Answer:
double × dp = NULL ;
int n;
n = <some value> ;
dp = new double[n]
Step-by-step explanation:
According to the given question, the relevant data provided is as follows
Variable dp = Array of double
Based on the above information,
The allocation of an array for doubling n and assigned it to dp is here below:
double × dp = NULL ;
int n;
n = <some value> ;
dp = new double[n]
Hence, the above is the answer