C++ Programming Fundamentals
Casual Mode - Take your time!
1 / 20
Correct
0
Incorrect
0
Score
0%
Multiple Choice
void main() { char *p = "ayqm"; char c; c = ++*p++; printf("%c",c); }
- a
- b
- y
- z
Casual Mode - Take your time!
void main() { char *p = "ayqm"; char c; c = ++*p++; printf("%c",c); }