CERT.LITERAL.BINARY
Use of binary constant is a language extension
Vulnerability and risk
Binary format may not be supported by all compilers and usage could affect portability
Vulnerable code example
void foo() { unsigned char bin = 0b00011111; }