What will be the output of the program ?
#include int main() { char str[] = "peace"; char *s = str; printf("%s\n", s++ +3); return 0; }
peace
eace
ace
ce
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment