struct 嵌套指针struct a{ struct b * c;};typedef struct c{ short d;}如果想从a访问d应该怎么写呢[解决办法]如果是struct a tmp;就是 (tmp.c)->d如果是struct a *tmp;就是 (tmp->c)->d