binary numbers code example
Example 1: whats the binary nmber system
The binary number system is a number expressed in the base-2 numeral system
Example 2: combine binary numbers
long long result;
result = num1;
result = (result << 8) | num2;
result = (result << 24) | num3;