Masking, bit-shifting and & 0xff00
If you are reading about endian (big and small) and seen snippets of code where you AND the input with 0xff00 and then shift the result say by 8 via >> 8 and wondering what the heck is going on then you’ve come to the right place. If you have an input such as int… Read More »