Multiple choice What will be the value of 'a' in the following C code? int a=5; printf(&"&a=%d&"&,a&2); a=5 a=1 a=2 a=0 a=3 Reveal answer Fill a bubble to check yourself D Correct answer Explanation This is the correct option as bitwise AND operator, when operated on binary 0101 and 0010 results in 0000.