Can any body confirm me pls if I am right. I tested through code 1) shift operators can be applied to char type operand 2) the unary +,- can not be applied to char type operand 3) ~ (bitwise inversion)can be applied to char type operand
Can any body confirm me pls if I am right. I tested through code 1) shift operators can be applied to char type operand char is promoted to int. 2) the unary +,- can not be applied to char type operand char is unsigned. 3) ~ (bitwise inversion)can be applied to char type operand char is promoted to int.