Question: For the above code, when program running to the break point, what value will be in result_not: A. -14 B. 11 C. 15 D. 13

For the above code, when program running to the break point, what value will be in result_not:
| A. | -14 | |
| B. | 11 | |
| C. | 15 | |
| D. | 13 |
8 5 int main() { 6 int first 13; // 1101 7 int second 6; // 0110 int result_or = first | second; 9 int result_xor = first ^ second; 10 int result_not first; 11 return 0; 12 }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
