Can I use a binary literal in C or C++?

If you are using GCC then you can use a GCC extension (which is included in the C++14 standard) for this:

int x = 0b00010000;

Leave a Comment