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 the advantage of c language?
Why void is used in c?
What do header files do?
Differentiate fundamental data types and derived data types in C.
What is pragma c?
What is bin sh c?
How to set file pointer to beginning c?
What is a substring in c?
What does void main return?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
Explain how do you convert strings to numbers in c?
What is assignment operator?
What is the difference between int main and void main?
string reverse using recursion
What is fflush() function?