MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ? #include int main() { char p[] = “%dn”; p[1] = ‘c’; printf(p, 65); return 0; } |
| A. | A |
| B. | a |
| C. | c |
| D. | 65 |
| Answer» B. a | |