A
Q. What is the result of this code?
Code:
int a = 7;
a = a & 3;
printf("%d", a);
a = a & 3;
printf("%d", a);
- Correct Answer - Option(B)
- Views: 20
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.