write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / vijayram600
#include<stdio.h>
#include<conio.h>
void main()
{
int a=10,b=20;
clrscr();
while(b--) a++;
printf("Sum is :%d",a);
getch();
}
| Is This Answer Correct ? | 21 Yes | 7 No |
Post New Answer View All Answers
How can I get random integers in a certain range?
What is %d called in c?
will u please send me the placement papers to my mail???????????????????
Can we change the value of static variable in c?
What is adt in c programming?
What is function definition in c?
What is pointers in c with example?
State the difference between realloc and free.
What does sizeof function do?
List some basic data types in c?
Why is not a pointer null after calling free?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
i have a written test for microland please give me test pattern
Which function in C can be used to append a string to another string?
Is null equal to 0 in sql?