I am new to programming and I'm learning bit shifting.
Suppose I have 2 long long bytes given
long long bytes1 = b11111111; long long bytes2 = b10000000;
long long result;
I want to concat the 2 bytes so that the result variable will hold: = 1000000011111111
Is there a way on how to concat this in my specific order of bytes?