Hi everyone,
I was reversing and then i've found a definition as COERCE_FLOAT, Something like this:
Example:
Code:
float v29;
float v28;
float v30;
float v31;
v29 = COERCE_FLOAT(&v30);
v28 = COERCE_FLOAT(&v31); // what is this?
the value of v30 pass to v29 without the pointer? i don't understand.
how would this be on C++?
Thx to all...