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 math functions are available for integers? For floating point?
What is main function in c?
to find the closest pair
Are bit fields portable?
Explain what are binary trees?
How can I implement sets or arrays of bits?
What are global variables and explain how do you declare them?
Does free set pointer to null?
What are the different types of data structures in c?
Is swift based on c?
Explain what does it mean when a pointer is used in an if statement?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What does %p mean c?
What do you mean by dynamic memory allocation in c? What functions are used?
Who invented b language?