I have a simple question about this code
struct a
{
char key;
a *next;
};
a = here*;
and in the function I check if here is NULL or not
if (here->key==NULL)
...
and Im sure here is pointing to an a(struct) but it gives access violation . what should I do to check if something Is NULL or not ?