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