MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the final value of L in the following C code?#include <stdio.h> int main() { int k = 12, L = 0; if (k || (L = k + 12)) //do something ; } |
| A. | 0 |
| B. | Nothing |
| C. | 12 |
| D. | Compilation Error |
| E. | None of these |
| Answer» B. Nothing | |