This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

c6713 double Pointer error

this is my code:

double x,y;

double * p;

x = 5153.4260356;

p = & x;

y = * p; // y= x is ok

///////////////

but y !=x ? why?