Large Number - How to get the value

2

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.

    
asked by anonymous 21.06.2015 / 05:55

1 answer

1

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.

    
23.06.2015 / 19:28