MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code?_x005F_x000D_        #include        void main()       {           int x = 97;           char y = x;           printf("%cn", y);       } |
| A. | a |
| B. | 97 |
| C. | Run time error |
| D. | None |
| Answer» B. 97 | |