Update appNew update is available. Click here to update.
Topics

Fill the output

Easy
0/10

Problem statement

Assume memory address of variable ‘a’ is : 200 and a double variable is of size 8 bytes, what will be the output -

double a = 10.54;
double *d = &a;
d = d + 1;
cout  << d << endl;
Answer: