某知名IT公司笔试题
#include<stdio.h>
#include<stdlib.h>
#include <string.h>
int main()
{
char *c[]={"HELLO","NEW","WORLD","SAYHZ"};
char **cp[]={c+3,c+2,c+1,c};
char ***cpp = cp;
printf("%s\n",**++cpp);
printf("%s\n",*--*++cpp+3);
printf("%s\n",*cpp[-2]+3);
//printf("%s",cpp[-1][-1][1]);
system("pause");
return 0;
}