Calculations

C Example to subtract two integer without using minus operator

C Example to subtract two integer without using minus operator

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

subtract two integer without minus

Code to calculate the subtraction of  two numbers 

Subtract two integer without using minus

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

 

Subtract two integer without using minus operator – Takes input from user

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

  1. Create two variables to store two numbers as input provided by the user: num1,num2;
  2. Create a variable to store the subtraction of these numbers: sub
  3. Request the user to enter first input to store variable num1
  4. Using scanf() function to store the first input value in num1
  5. Request the user to enter second input to store variable num2
  6. Using scanf() function to store the second input value in num2
  7. find the subtraction of num1 and num2 without using minus operator
  8. Finally, display result on the screen- the subtraction of both numbers num1 and num2

 

Suggested for you

Operator in C language

Data type in C language

variable in C language

if statements in C language

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

 

Python Example to subtract two integer without using minus operator
C++ Example to subtract two integer without using minus operator
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

6 months ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

6 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

6 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

9 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

1 year ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

1 year ago