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