I'm practicing with some tasks of a Java course and I came across this variable
int x = 0b1000_1100_1010;
I know that a "f" and a "d" beside a number means that the number is a float or a double, respectively. But what about this "b" between the number?
I saw here that this is related to bytes, but I didn't quite understand how it works.
My question also applies to the "x" between numbers that I just saw on that link.
Thanks!