In this article, we will discuss the concept of the C Example to subtract two integer without using minus operator
In this post, we are going to learn how to write a program to calculate the subtraction of two numbers with out using minus operator in C programming language
The program use to calculate subtraction of given two integer numbers without using minus operator in C language
Program 1
#include <stdio.h> #include <stdlib.h> int main() { int num1=100,num2=20,sub; //Variable declaration sub=num1+~num2+1; //find subtraction without minus printf("Subtraction of %d and %d is: %d",num1,num2,sub); //display the output getch(); return 0; }
When the above code is executed, it produces the following result
Subtraction of %d and %d is: %d
The program allow the user to enter two value and then calculates subtraction of given two integer numbers without using minus operator in C language
Program 2
#include <stdio.h> #include <stdlib.h> int main() { int num1,num2,sub; printf("Enter the first number "); //ask input from the user scanf("%d",&num1); //store the input number in num1 printf("Enter the second number "); //ask input from the user scanf("%d",&num2); //store the input number in num1 sub=num1+~num2+1; //find subtraction without minus printf("Subtraction of %d and %d is: %d",num1,num2,sub); //display the output getch(); return 0; }
When the above code is executed, it produces the following result
Enter the first number 25 Enter the second number 5 Subtraction of 25 and 5 is: 20
Methods
Suggested for you
Function in C language
Similar post
Subtract two numbers in C language
Subtract two numbers using function in C language
Subtract two numbers using recursion in C language
Find sum of two numbers in C language
Find sum of two numbers in C language using pointer
Find sum of two numbers in C language using function
Find sum of two numbers in C using recursion
Find sum of two numbers in C without Arithmetic operator
Find sum of natural numbers in C language
Find sum of natural numbers in C language using recursion
How to find reverse number using method In this article, we will discuss the concept…
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…