Everybody knows that if you declare a 8 bit value, you can do something like
int a = B10001110;
like that vut I dont know how to declare it in 16 bit, I did something like
int b = B1000000100001111;
but this gives me error. Is there something I can do about this? I want this 16 bit format declaration.