MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int n = 6 * 4 % 7 - 12 + 4; printf("%d", n); } |
| A. | -12 |
| B. | Compilation Error |
| C. | -5 |
| D. | Runtime Error |
| E. | None of these |
| Answer» D. Runtime Error | |