Recursive linked list operations
Consider
typedef struct node* ptrtype;
typedef struct node
{
char Data;
node* Next;};
Previous slide
Next slide
Back to first slide
View graphic version