Write a program using recursion to find the summation of numbers from 1 to n
We can say ‘sum of numbers from 1 to n can be represented as sum of numbers from 1 to n1 plus n’ i.e. The sum of numbers from 1 to n = n + Sum of numbers from 1 to n-1 = n + n-1 + Sum of numbers from 1 to n-2 = […]


