MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code snippet? #include <stdio.h> void main() { 2 < 3 ? return 2: return 3; } |
| A. | 2 |
| B. | Runtime Error |
| C. | 3 |
| D. | Compilation Error |
| E. | None of these |
| Answer» E. None of these | |