a | 4 + c >> b & 7; 2. (a | ((( 4 * c ) >> b ) & 7 ))
Posted: Wed Jul 13, 2022 7:45 pm
a) 1 will give better performance as it has no parentheses
b) 2 will give better performance as it has parentheses
c) Both 1 & 2 will give equal performance
d) Dependent on the computer system
b) 2 will give better performance as it has parentheses
c) Both 1 & 2 will give equal performance
d) Dependent on the computer system