I need to work with a binary number.
I tried writing:
const x = 00010000;
But it didn\'t work.
I know that I can use an hex
You could try using an array of bool:
bool
bool i[8] = {0,0,1,1,0,1,0,1}