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