Predict the output of following program.
#include int main() { char flag=0x0f; flag &= ~0x02; printf("%d",flag); return 0; }
Answer: A
No answer description available for this question.