#include<studio.h>
int main() {
char *p="phone";
p++;
char c=(*p);
++c;
p--;
printf("%c%s",c,p++);
}
Answers
Answered by
0
Answer:
what do you mean I don't understand
Similar questions