Dear friends
I have a bit basic doubts in pointers and the structures inter relationships.
the first one.
static struct apvt {
int dead;
int pending;
int abouttograb;
}*agents=NULL;
what agents pointer is pointing to ?
second one is
struct apvt *p;
struct apvt *newlyavailable;
if (p == newlyavailable)
actually what are we try to test with this is it mean that both have the same location or so .. ?
third one is
struct apvt *p;
p = agents;
so now what does this p refers to ... ?
with regards
vlrk