结合方向自右向左
结合方向自右向左 带参宏与多级指针#include<stdio.h>#include<string.h>
#define P(x)printf("%s",x);
int main()
{
char *c[] = {"You can make statement","for the topic","The sentences","How about"};
char **p[] = {c+3,c+2,
c+1,c};
char ***pp = p;
P(**++pp);
P(*--*++pp+3);
P(*pp[-2]+3);
P(pp[-1][-1]+3);
printf("\n");
}
页:
[1]