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