what is the program to add two number using recursion in C?
Riya Answered question December 19, 2023
							Base Case:
If the second number is 0, return the first number. This serves as the stopping condition for the recursion.
Recursive Case:
If the second number is not 0, add 1 to the first number and decrement the second number.
Call the function recursively with the updated values.
Riya Answered question December 19, 2023
				