编程题:使用指向指针的指针
#include<stdio.h>
void main()
{ static char *str[]={"How","are","you"};
char **p;
p=str+1;
printf("%s\n",*p);
printf("%c\n",**p);
}
转载于:https://blog.51cto.com/c10086/1413772
编程题:使用指向指针的指针
#include<stdio.h>
void main()
{ static char *str[]={"How","are","you"};
char **p;
p=str+1;
printf("%s\n",*p);
printf("%c\n",**p);
}
转载于:https://blog.51cto.com/c10086/1413772