MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following c-code?void main ( ){char *P = "ayqm" ;char c;c = ++*p ;printf ("%c", c);} |
| A. | a |
| B. | c |
| C. | b |
| D. | q |
| Answer» D. q | |