Recursion in C

code:

#include<stdio.h>
void printNo(unsigned int n)
{
    if(n==0)
        return; //it is outing from this function and going back to callers return 0
    printf("Hello World %d\n",n);
    n--;
    printNo(n); //recursively calling printMsg //it is known as tail recursion as it is in the last part
}
int main()
{
    printNo(5); //call to printMsg function
    return 0;
}

Another code:
it’s not tail recursion

#include<stdio.h>
void printNo(unsigned int n)
{
    if(n==0)
        return; //it is outing from this function and going back to callers return 0

    printNo(n-1);
   printf(" %d\n",n);
     //recursively calling printMsg

}
int main()
{
    printNo(5); //call to printMsg function
    return 0;
}

//printing from stack

 

It would be a great help, if you support by sharing :)
Author: zakilive

Leave a Reply

Your email address will not be published. Required fields are marked *