#include using namespace std; int main() { double val; double *dptr; //pointer to a double. dptr = &val; //dptr now points to val cout<<"Enter a number: "; cin>> *dptr; //reading through a dereferenced pointer cout<<"The number enetered was "<>arr[i]; int sum=0; for(int i=0; i<10; i++) { sum+=*iptr; iptr++; } cout<<"The sum is "<