Question: Linked List - Add At Tail - use Recursion Write the body for the addAtTail function: Node* addAtTail(T value, Node* oldTail) It should create a
Linked List - Add At Tail - use Recursion
Write the body for the addAtTail function:
Node* addAtTail(T value, Node* oldTail)
It should create a new node, add it after the oldTail node, and return the address of the new node.

1#1nclude
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
