To assume tha I have number 54998 which in binar is:
54998=11010110 11010110
And now I have to break this number into 2 other numbers of the size of 8 bytes in binar,for example:
11010110=214 and 11010110=214
Any ideas to do it in C?
I thought about moving the number 8 bites to the right and finding the first number,but are there any other ways to do this?
number>>8;