So, You want add to add two numbers without using '+' operator.
Its very easy. Solution is given below:
void main()
{
int a=25, b=68;
while(b--)
a++;
printf("Addition of two nos. is %d", a);
}
Tuesday, May 26, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment