0b110000000011
0b110000000011 is a binary integer literal. The digits after the 0b prefix represent the value in base 2, here the 12-bit sequence is 110000000011. In decimal, this value is 3075, and in hexadecimal it is 0xC03. The pattern consists of two leading 1s, followed by eight 0s, and ending with two 1s.
Binary literals are commonly used in programming to express exact bit patterns, such as bit masks, flags,
In practice, the interpretation of this literal depends on the width and signedness of the target type