C语言中的指针问题
#include<stdio.h>int main(){
char *p[]={"tencent","campus","recruiting"};
char **pp[]={"p+2","p+1","p"};
char ***ppp[]=pp;
printf("%s",**++ppp);
printf("%s",*++*++ppp);
return 0;
}
哪位大神帮忙看下最后输出什么?
在线等!
2017-09-12 15:11

2017-09-12 16:01

2017-09-13 10:48
2017-09-13 12:59