我的代码是这样的:
struct a{
....
....
};
struct a c[MAXNODES];
struct b{
int k;
struct a *p;
};
struct b d[MAXNODES];
所以,如果我需要访问指向struct a
in的指针,struct b
我应该使用间接运算符还是不使用。
some_variable=*(d.[i-1].p);