c program to subtract two numbers without using subtraction operator

c program to subtract two numbers without using subtraction operator


#include

int main(){

int a,b;
int sum;

printf("Enter any two integers: ");
scanf("%d%d",&a,&b);

sum = a + ~b + 1;

printf("Difference of two integers: %d",sum);

return 0;
}

No comments:

Post a Comment