Question.6
A developer applies the ~ (bitwise NOT) operator on a uint8_t variable:
uint8_t
uint8_t mask = 0x0F; if (~mask == 0xF0) { printf("Match"); } else { printf("No match"); }
What is the output?
Select Answer
Match
No match
Compilation error