I'm trying to change the value of x from 5 to 7 to 6 using these bitwise operators. However, the second time where it says x = (x|(0 << 0));
yields no change and is ignored when I trace it.
No errors. Any tips?
int main() {
unsigned short x = 5;
x = (x|(1 << 1));
printf("%hd\n", x);
x = (x|(0 << 0));
printf("%d\n", x);
return 0;
}