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