Lets say I have the following structure
typedef struct node { unsigned long data; struct node* next; } node; typedef struct queue { node* head;