News

I also have a teacher that doesn't know what he's doing. it's pretty much independent study.<BR><BR>I'm struggling through doubly linked-lists right now.
Hello All,I am attempting to build a queue ADT using Linked Lists in C. The following is the relevant code fragment...typedef struct QueueNodeTag{ char data[MAXLEN]; struct QueueNodeTag * next ...