Hey guys I'm having a little difficulty understanding how to have a pointer point to another pointer in a struct, that thereby points to another pointer in a struct. Not sure if that makes sense.
Basically, usually I would write something like:
test->first = NULL;
But I need to access a part of first as well. I am trying:
test->first->alpha = NULL;
But that isn't working. Any ideas on how I can access the alpha by only declaring test? And thereby set test->first->alpha to NULL?
Thanks guys!