I am multiplying 0x1d400 * 0xE070381D.
When I do this on my calculator the result is 0x00019A4D26950400
When I tried implementing this in cpp here's what i have.
long long d;
d = 3765450781 * 1d400;
The result this code gives is that d = 0x26950400.
This is only the bottom 4 bytes, what happened to everything else?
I am trying to isolate the upper 4 bytes 0x00019A4D and save them into another variable. How can this be done?
If I could get the multiplication to display all 8 bytes what I was thinking of doing to isolate the upper 4 bytes was:
d = d & 0xFF00; //0xFF00 == (binary) 1111111100000000
d = d>>8;
Will this work?