Codeforcoding

C program to divide two numbers using recursion

C program to divide two numbers using recursion

In this tutorial, we will discuss the concept of C program to divide two numbers using recursion

In this topic, we are going to learn how to divide two numbers using the recursive function in C programming language

C program to divide two numbers using recursion
Divide two numbers using recursion

What is division

The division is a method of splitting a group of things into equal parts. The division is an arithmetic operation inverse of multiplication

It is one of the four basic operation of arithmetic calculation others being addition,subtraction,multiplication

The division of two natural numbers means it is the operation of calculating the number of times one number is contained within one another

 

C exercise to Divide two numbers

Program to division of two numbers

The program calculates the division of the given two numbers using C recursive function

Program 1

#include <stdio.h>
#include <stdlib.h>

int division(int,int);   //function prototype / declaration
int main()
{
    int num1=800,num2=40,result;//variable declaration
    result=division(num1,num2);//assign the output to variable result
    //function call
     printf("Division of %d and %d is: %d", num1,num2,result);
     //Display the result on the screen
    getch();
    return 0;
}


int division(int x, int y)//Recursive function
{
    if (y==0)
{
  return 0;
}
else if (x-y==0){
    return 1;
}
else if (x<y){
    return 0;
}
else{
    return (1+division(x-y,y));
}
}




When the above code is executed, it produces the following result

Division of 400 and 40 is: 10

 

Program to division of two numbers – Entered by user

Program 2

The program allows the user to enter two integer numbers and then it calculates the division of the given numbers using Recursion function in C language

#include <stdio.h>
#include <stdlib.h>

int division(int,int);   //function prototype / declaration
int main()
{
    int num1,num2,result;//variable declaration
    printf("Enter two numbers ");//Ask input from the user
    scanf("%d %d",&num1,&num2);//Reading the input value
    result=division(num1,num2);//assign the output to variable result
    //function call
     printf("Division of %d and %d is: %d", num1,num2,result);
     //Display the result on the screen
    getch();
    return 0;
}


int division(int x, int y)//Recursive function
{
    if (y==0)
{
  return 0;
}
else if (x-y==0){
    return 1;
}
else if (x<y){
    return 0;
}
else{
    return (1+division(x-y,y));
}
}





When the above code is executed, it produces the following result

Enter two number to calculate division
1200
24
Division of 1200 and 24 is: 50

 

Suggested for you

Operator in C language

Data types in C language

Variable in C language

input output function in C language

Function in C language

Recursion in C language

 

Similar post

Find product of two numbers using method in Java

Find product of two numbers using recursion in Java

Multiply two numbers in C language

Multiply two numbers in C++ language

Multiply two numbers in Python language

 

C Program to Divide of two integer numbers

Java Program to Divide of two integer numbers

C++ Program to Divide of two integer numbers

Python Program to Divide of two integer numbers

 

C++ program to divide two numbers using recursion
Python program to divide two numbers using recursion
Exit mobile version