Tail recursion: Difference between revisions

Content deleted Content added
Line 77:
For example, consider a function that duplicates a linked list, described here in [[C (programming language)|C]]:
<source lang="c">
list *duplicate(const list *input)
{
if (input == NULL) {