Types of Recursion in C Language:
There are five types of recursions. They are as follows:
- Tail Recursion
- Head Recursion
- Tree Recursion
- Indirect Recursion
- Nested Recursion
Note: We will discuss each of the above recursion with examples as well as we will also see the differences between them. Also, we will try to compare the recursion with the loop and see the time and complexity, and then we will make the decision whether we need to use the Recursive function or should we go with looping.
Tail Recursion in C:
We have already seen the example of tail recursion in our previous articles. The following is an example of Tail Recursion.

What does it mean by Tail Recursion in C Language?
If a function is calling itself and that recursive call is the last statement in a function then it is called tail recursion. After that call there is nothing, it is not performing anything, so, it is called tail recursion. For a better understanding, please have a look at the below image.

As you can see in the above image, the fun function takes some parameter ‘n’ and if n>0, then there are some statements inside the if block, and further if you notice the last statement it is calling itself by a reduced value of n. So. what all it has to do; it is performing the operations first and then it is calling itself.
So, the point that you need to remember is, that if the last statement is a recursive function call then it is called tail recursion. This also means that all the operations will perform at calling time only and the function will not be performing any operation at a returning time. Everything will be performed at calling time only and that is why it is called tail recursion.
Example: Tail Recursion in C Language
The following is an example of Tail Recursion. As you can see, there is nothing, there is no operation we are performing after the recursive call and that recursive function call is the last statement.
#include <stdio.h> void fun(int n) { if (n > 0) { printf("%d", n); fun(n-1); } } int main () { fun(3); return 0; }
Output: 321
The following example is not Tail Recursion.
As you can see in the below example, there is something written (+n) along with the function call i.e. some operation is going to be performed at the returning time. So, in this function, there is something remaining that has to be performed at returning time and hence cannot be tail recursion. Tail recursion means at returning time it doesn’t have to perform anything at all.
#include <stdio.h> void fun(int n) { if (n > 0) { printf("%d", n); fun(n-1) + n; } } int main () { fun(3); return 0; }
Tail Recursion vs Loops in C:
Now, we will compare tail recursion with loops. The first and the foremost thing that we need to remember is every recursive function can be written using a loop and vice versa is also true i.e. every loop can be written using a recursive function.
The following is an example of Tail Recursive that we have just discussed. Already in our previous article, we traced this function and know that the output will be 321 when we pass the value 3 to the function.

Now we want to write the above recursive function using a loop. The following image shows how to convert the recursive function to a loop. Here, instead of the conditional if statement, we use a while loop, and instead of the recursive function call with a reduced value of n, we directly reduced the n value by 1.

Example: Using Loop
The following example uses a loop and gets the same output as the recursive function. If you call the fun function bypassing the value 3, then you will also get the same output 321 as we get in the Recursive function example.
#include <stdio.h> void fun(int n) { while (n > 0) { printf("%d", n); n--; } } int main () { fun(3); return 0; }
Output: 321
The output is the same as well as the structure also looks similar between recursive function and loop. So, the point that I have to tell you here is that tail recursion can be easily converted into the form of a loop.
Which one to choose between Tail Recursive and Loop in C Language?
Let us decide which one is efficient. For this, we are going to compare the two examples that we have already discussed in this article. Please have a look at the below image.

Time Complexity:
In terms of time Complexity, if you analyze, both the functions print the same three values. That means the amount of time spent is the same whatever the value of ‘n’ is given. So, the time taken by both of them is the order of n i.e. O(n).
Space Complexity:
The recursive function internally utilizes a stack. For the value of 3, it will create a total of 4 activation records in a stack. Already we have done the analysis in our previous article. So, for a value n, the space taken by the Recursive mechanism is the order of n i.e. O(n)
But in the loop, only 1 activation record will be created as it is not calling itself again. So, the space complexity of the loop is the order of 1 i.e. O(1) and it will just create only one activation record that is constant.
So, the conclusion is, that if you have to write a tail recursion then better convert it into a loop that is more efficient in terms of space. But this will not be true for every type of recursion or loop. So, in the case of Tail Recursion, the loop is efficient.
Note: One more point that you have to remember is some compilers (under code optimization inside compiler), will check, if you have written any function which is tail recursion, then they will try to convert it into the form of a loop. It means they will try to reduce the space consumption and they will utilize only the order of 1 i.e. O(1).
Head Recursion in C Language:
Now let us understand Head Recursion. Following is the structure of head recursion. If there is a function that is calling itself, then it is a recursive function. As you can see in the below image, the function fun calling itself, so it is a recursive function. Then if you further notice the first statement inside the function is the recursive call. That means, what all the processing it has to do, it is doing at returning time i.e. after the recursive call. There is no statement that is no operation before the function call.

Note: If there is something before the recursive call then it is not a head recursion. If something is there before the function call, it is just a recursion. We don’t have to give any special name to it. The following is not head recursion.

What do you mean by Head Recursion in C Language?
Head Recursion means the function doesn’t have to process or perform any operation at the time of calling; it has to do everything only at the time of returning. If all the processing or operations are done at the returning time then such recursive functions are called head recursion.
Example: Head Recursion in C Langauge
The following is an example of Head Recursion and we have already seen such types of examples in our previous articles. As you can see in the below example, within the if block the first statement is the recursive function call. Before the recursive call, there is no statement present which means it is not performing any operation at the calling time. Further, if you notice, after the recursive function call, the printf statement is there which is going to be executed at returning time. And hence this is an example of Head Recursion.
#include <stdio.h> void fun(int n) { if(n > 0) { fun(n-1); printf ("%d", n); } } int main() { fun(3); return 0; }
Output: 123
Comparing Head Recursion with Loop in C Language:
Now we will compare head recursion with loop. Before comparing the first question is, can we convert head recursion into a loop? Yes, we can. For this, we need to write some logic. Let us see, how to convert a head recursion to a loop. Please have a look at the following image.

The following code shows the complete example using a loop.
#include <stdio.h> void fun(int n) { int i = 1; while (i <= n) { printf ("%d", i); i++; } } int main() { fun (3); return 0; }
Output: 123
Note: The point that you need to remember is if a recursive function does some operation at returning then it is not easy to convert that recursive function to a loop. We need to convert by writing some logic.
Time Complexity: The time complexity of Head Recursion is O(n).