MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ char p[] = "%d\n";_x000D_ p[1] = 'c';_x000D_ printf(p, 65);_x000D_ return 0;_x000D_ } |
| A. | A |
| B. | a |
| C. | c |
| D. | 65 |
| Answer» B. a | |