MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following code?int main() { char ch; ch=129; printf("%d\n",ch); return 0; } |
| A. | 129 |
| B. | -129 |
| C. | -127 |
| D. | syntax error |
| Answer» D. syntax error | |