write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / raja
void main()
{
int a=20,b=40;
for( ;b<=1;b--)
a++;
printf("%d",a);
}
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What are different storage class specifiers in c?
What is FIFO?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is c language & why it is used?
What are predefined functions in c?
What is the use of #define preprocessor in c?
What is the purpose of sprintf() function?
Why we use stdio h in c?
What is oops c?
Why doesnt the call scanf work?
simple program of graphics and their output display
Give me the code of in-order recursive and non-recursive.
What is a node in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Do you have any idea how to compare array with pointer in c?