首页 > 代码库 > 编程题:使用指向指针的指针

编程题:使用指向指针的指针

编程题:使用指向指针的指针

#include<stdio.h>

void main()

{ static char *str[]={"How","are","you"};

   char **p;

   p=str+1;

   printf("%s\n",*p);

   printf("%c\n",**p);

}

编程题:使用指向指针的指针 - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413772