MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 5; if (n & (n = 6)) printf("True %d n", n); else printf("False %d n", n); } |
| A. | True 5 |
| B. | False 5 |
| C. | False 6 |
| D. | Compilation Error |
| E. | True 6 |
| Answer» F. | |