MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int n = 98; char m = n; printf("%c n", m); } |
| A. | 98 |
| B. | Compilation error |
| C. | b |
| D. | Garbage value |
| E. | None of these |
| Answer» D. Garbage value | |