Lets say I have a node like this


typedef struct node
{
int data;
struct node *next;
} Node;

and lets say that i entered 3 nodes (which all have their memory allocated of course) in a...