I can't seem to find out what is wrong with my code, which is written in C. I keep getting all kinds of errors over things that I'm almost positive aren't ...
Hi, I have a few small problems trying to use typedef. I have a typedef like this: struct node { char name[20]; struct node *next; }; typedef struct node List; Then I want an array of pointers to Lists. I tried this: typedef List *Set[997]; But the compiler gave this warning: parse error before '*' token warning: data definition has no ...