Search This Blog

Sunday, June 26, 2011

Add two Numbers witout using + sign

Add two Numbers without using '+' sign

#include<stdio.h>
#include<conio.h>
void main()
{
int a=10,b=10,c;
c=a-(-b);
printf("total of a and b is %d",c);
getch();
}


No comments:

Post a Comment