MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { int p = 12, q = 6, r = 4; q != !p; r = !!p; printf("%d t%d", q, r); } |
| A. | 4 |
| B. | 6 |
| C. | 12 |
| D. | 6 1 |
| E. | 1 6 |
| Answer» E. 1 6 | |