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