Division of two numbers using function in C++


The program calculates the integer division of two numbers num1 and num2.

  • The function divi takes two integer arguments num1 and num2, and performs integer division of num2 by num1. The result of the division is stored in a third integer variable num3, which is then returned by the function.
  • In the main function, the divi function is called with arguments 2 and 10. The result of the function call is then printed to the console using cout. The output of the program is 5, which is the integer division of 10 by 2.

Source Code

#include<iostream>
using namespace std;
int divi(int num1, int num2)
{
    int num3=num2/num1;
    return num3;
}
int main()
{
    cout<<divi(2,10);
    return 0;
}
To download raw file Click Here

Output

5

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples