In this tutorial, we will discuss the C++ program to subtract two numbers using the function
In this topic, we are going to learn how to subtract two numbers (integer, floating point) using the function in C++ language
already we are learned the same concept using the operator
if you want to remember click here, C++ program to subtract two numbers
Approach
The program allows to enter two integer values then, it calculates subtraction of the given numbers
Program 1
#include <iostream> #include <conio.h> using namespace std; int subNum(int a, int b);//Function prototype int main() { int result,num1,num2; cout<<"Enter two numbers to subtract\n"; cin>>num1>>num2;//read input from the user result=subNum(num1,num2);//call the function cout<<"subtraction of given two numbers: "<<result; getch(); return 0; } int subNum(int x, int y)//function definition { int c=x-y; return (c); }
When the above code is executed, it produces the following result
case 1
Enter two numbers to subtract 678 456 subtraction of given two numbers: 222
case 2
Enter two numbers to subtract 46 789 subtraction of given two numbers: -743
The program allows to enter two float values then, it calculates subtraction of the given numbers
Program 2
#include <iostream> #include <conio.h> using namespace std; float subNum(float a, float b);//Function prototype int main() { float result,num1,num2;//variable declaration cout<<"Enter two numbers to subtract\n"; cin>>num1>>num2;//read input from the user result=subNum(num1,num2);//call the function cout<<"subtraction of given two numbers: "<<result; getch(); return 0; } float subNum(float x, float y)//finction definition { float c=x-y; return (c); }
When the above code is executed, it produces the following result
case 1
Enter two numbers to subtract 233.4 34.5 subtraction of given two numbers: 198.9
Suggetsed post
Data type in C++ language
Similar post
Subtract two numbers in Java language
Subtract two numbers in C language
Subtract two numbers in C++ language
Subtract two numbers in Python language
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…
Python: Average of Odd & Even Numbers from User Input In this post, we will…
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…