We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 688341b commit b505973Copy full SHA for b505973
modules/bitwise-operations.md
@@ -66,7 +66,7 @@ information, with mask to extract the parts. Here, a `unsigned short` type
66
stores the byte value and associated flags:
67
68
```C
69
-#define VALUE_MASK 0xff
+#define VALUE_MASK 0x00ff // same as 0xff yet more readable
70
#define FLAG_MASK 0xff00
71
72
#define ONE 0x0100
0 commit comments