MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include <stdio.h> int main() { char chr; chr = 128; printf("%d\n", chr); return 0; } |
| A. | 128 |
| B. | -128 |
| C. | Depends on the compiler |
| D. | None of the mentioned |
| Answer» C. Depends on the compiler | |