In this tutorial, we will discuss a concept of use of C program to find the sum of two numbers using recursion
In this article, we are going to learn how to calculate the addition of two numbers using recursion in the C programming language
Program
This program allows the entry of two digits from the user and to find the sum of two numbers using the recursive function in C programming language
#include <stdio.h> #include <stdlib.h> int add(int,int); //Function prototype int main() { int x,y,result; //variable declaration printf("enter two numbers: "); scanf("%d %d",&x,&y); result=add(x,y);//function call printf("Sum of two numbers are: %d\n",result); getch(); return 0; } int add(int x, int y) //function declaration(recursive function) { if(y==0) return x; else return(1+add(x,y-1)); }
When the above code is executed, it produces the following results
Enter two numbers: 23 34 sum of two numbers are:57
Method
Similar post
C code to the sum of two numbers
C program to sum of two numbers using the function
C program to calculate sum of array elements
Suggested for you
Function in C language
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…
View Comments
When we take both values negative then this code is not worked.
Eg x=-4,y=-4