this is a test this is only a test but this is an important test.The output would be:
1. this is a test 2. this is only a test 3. but this is an important test.
typedef struct { typedef struct nodeentry { tyepdef struct {
char *str; stringval sval; nodeentry *front;
int val; struct nodeentry *tofront; nodeentry *rear;
} stringval; struct nodeentry *torear; } list;
} nodenetry;
Write the functions described below.
Notice that in each case a pointer to
the list is passed since some of the functions might have to change the list.