Plz explain how answer would come in terms of precedence
bitmasking-quiz
goyal431
(Harshit Goyal)
April 17, 2020, 2:41pm
#1
bitmask output3
int a = 20, b = 2, c = 3, d = 1;
cout << ( a>>b&c+d ) << endl;
What will be the output of the above code?
5
2
4
11