MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following C code? #include <stdio.h> int main() { signed char ch; ch = 129; printf("%d n", ch); return 0; } |
| A. | 129 |
| B. | -129 |
| C. | 127 |
| D. | -127 |
| E. | None of these |
| Answer» E. None of these | |