What will be the output of the program ?
#include int main() { char str[] = "peace"; char *s = str; printf("%s\n", s++ +3); return 0; }
Answer: D
No answer description available for this question.