Subtract 2 uint_64 to get an int

Viewed 25

I have two uint64_t:

a = 0x02

b = 0x01

I want to do the operation (a-b) to return int 1, not 0x01

How do I do so?

0 Answers
Related