Showing posts with label Add Two numbers without using operator. Show all posts
Showing posts with label Add Two numbers without using operator. Show all posts

Friday, February 1, 2013

Add Two numbers 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;
}