Predict the output of following program.
#include int main() { int x=10; x &= ~2; printf("x= %d",x); return 0; }
Answer: B
No answer description available for this question.