I have this value
v6[0] = 22;
*(_QWORD *)&v6[1] = 42949672960069i64;
How can I get the real value of this number? What should I know about reverse engineering?
How to compile this in Dev C ++? Thank you.
I have this value
v6[0] = 22;
*(_QWORD *)&v6[1] = 42949672960069i64;
How can I get the real value of this number? What should I know about reverse engineering?
How to compile this in Dev C ++? Thank you.
You need to know what size of data you expect to receive.
See the table with the data types and their size in documentation
p>Depending on the size of the number you expect, even though it is integer, you need a long, float, or double to store it.