MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include int main() { int i = -3; int k = i % 2; printf("%d\n", k); } |
| A. | Compile time error |
| B. | -1 |
| C. | 1 |
| D. | Implementation defined |
| Answer» C. 1 | |