标签:c语言
编程题:使用指向指针的指针
#include<stdio.h>
void main()
{ static char *str[]={"How","are","you"};
char **p;
p=str+1;
printf("%s\n",*p);
printf("%c\n",**p);
}
本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413772
标签:c语言
原文地址:http://c10086.blog.51cto.com/6433044/1413772