You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It states that the bitwise operation is 32. c = a & b; /* 32 = 0001 0000 */
While the binary representation is correct, the decimal representation should be 16.
The text was updated successfully, but these errors were encountered:
In the example: https://devtut.github.io/c/operators.html#bitwise-operators
It states that the bitwise operation is 32.
c = a & b; /* 32 = 0001 0000 */
While the binary representation is correct, the decimal representation should be 16.
The text was updated successfully, but these errors were encountered: