what is the output of the code?

#include<stdio.h>

int reverse(int no)
{
    if(no == 0)
        return 0;
    else
        printf("%d,", no);
    reverse (no--);
}

int main()
{
    int no=5;
    reverse(no);
    return 0;
}


Posted on by