MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the final value of c in the following C code snippet? (Initial values: a = 1, b = 2, c = 1) c += (-c) ? a : b; |
| A. | Syntax Error |
| B. | c = 1 |
| C. | c = 2 |
| D. | c = 3 |
| Answer» D. c = 3 | |