this is like a structure within another strucuture....Code:typedef struct {
int tag;
char* buffer;
} IOEntry;
struct {
IOEntry ioEntry;
IOEntry* next;
};
just give me the implementation for adding a new node with tag and buffer and how point it to next node...since two structures are involved i m getting confused....
