write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / praveenkumar
main()
{
int a,b,c;
printf("enter a,b values:");
scanf("%d%d",&a,&b);
c=((a)-(-b));
printf("a+b="&c);
}
| Is This Answer Correct ? | 66 Yes | 3 No |
Post New Answer View All Answers
show how link list can be used to repersent the following polynomial i) 5x+2
In C programming, how do you insert quote characters (‘ and “) into the output screen?
List some of the static data structures in C?
why do some people write if(0 == x) instead of if(x == 0)?
What are pointers? What are stacks and queues?
Is there any data type in c with variable size?
Why we use stdio h in c?
What is the explanation for modular programming?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
how can f be used for both float and double arguments in printf? Are not they different types?
Is c still used?
What is variable initialization and why is it important?
Explain goto?
List out few of the applications that make use of Multilinked Structures?
What is the use of pointers in C?