Sunday, January 22, 2012

How to add two numbers without using the plus operator in c or Add two numbers in c without using operator

#include<stdio.h>

int main(){
   
    int a,b;
    int sum;

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

    //sum = a - (-b);
    sum = a - ~b -1;

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

    return 0;
}

No comments:

Post a Comment