关于指针偏移量。
#include "stdio.h"char *c[]={
"enter",
"new",
"point",
"first"};
char **cp[]={c+3,c+2,c+1,c};
char ***cpp=cp;
main()
{
printf("%s\n",**++cpp);
printf("%s\n",*--*++cpp+3);
printf("%s\n",*cpp[-2]);
system("pause");
}
这个程序里“printf("%s\n",*cpp[-2]);” 中的负2,怎么理解?说是偏移量,怎么个偏移法?
大虾们,不好意思分不多了。呵呵!