In the code below, what is the value of x and why?
bool x =true;
x &= false;
x is false, becase (true & false) == false.
&= is to & as += is to +.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With