What will be the output of the following expression:
((a >> b) ^ c)& d
Where a = 12, b =2, c = 5 and d = 2
Ans ===> 010 (binary form) 2 (decimal form)
((a >> b) ^ c)& d
Where a = 12, b =2, c = 5 and d = 2
Ans ===> 010 (binary form) 2 (decimal form)
Comment