Question: int num1 = 1, num2 = 2; What value will z have if we execute the following assignment statement? int z = num1 &num2;

int num1 = 1, num2 = 2; What value will z have if we execute the following assignment statement? int z = num1 &num2;
Step by Step Solution
There are 3 Steps involved in it
The expression num1 num2 is a bitwise AND operation between num1 and num2 In this case num1 i... View full answer
Get step-by-step solutions from verified subject matter experts
