#include <stdio.h>
int addnum(int n);

int main()
{
    int num;
    
    printf("Enter a positive integer: ");
    scanf("%d", &num);
    
    printf("Sum = %d\n\n\n",addnum(num));
    return 0;
}

int addnum(int n)
{
    if(n != 0)
        return n + addnum(n-1);
    else
        return n;
}

OUTPUT:

Enter a positive number: 20
Sum=210




For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-


For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/