

MCQOPTIONS
Saved Bookmarks
1. |
What would be the output of the following? #include void main() { char *ptr=“abcd” char ch; ch = ++*ptr++; cout |
A. | a |
B. | b |
C. | c |
D. | d |
Answer» C. c | |