struct nlist { /* table entry: */ struct nlist *next; /* next entry in chain */ char *name; /* defined name */ char *defn; /* replacement text */ }; ...
yes. for example I can set an integer variable to 0, because its type is int and 0 is also an integer. but how we can set a variable of type nlist to zero? it doesn't have a i...
[In reply to Patrick Bowen] np = hashtab [ hash(s)] First, Why the above statement is the first element of the array? We just put a random number in the index, what guarante...
@mr_lactose here we created *hashtab[HASHSIZE] without any NULL element, but in the for statemeny , we reietrate the loop untill NULL is found. for the first element to look...
could you please clarify more with an example?