First page Back Continue Last page Graphics
Recursion & Linked Lists
Look up on web for reference (not specifically in our text).
Define a function to print the members of a linked list in order. (recursively)
Assume the list was created previously and has 5 elements in the list. The data field will be of type char and the nodes will contain 'a', 'c', 'g', 'k', and 'm'.