2006-一-4

int main()
{
    char *p[2][3]={"Hello","world","student","computer","end","the"};
    printf("%c\n",***(p+1));
    printf("%c\n",**p[0]);
    printf("%c\n",(*(*(p+1)+1))[2]);
    printf("%c\n",*(p[1][2]+1));
    printf("%s\n",**(p+1));
}