How to add two numbers without using arithmetic operators?
Answer Posted / pugalarasu
int sum(int num1,int num2)
{
for(int i=0;i<num2;i++)
num1++;
return num1;
}
| Is This Answer Correct ? | 39 Yes | 50 No |
Post New Answer View All Answers
How many loops are there in c?
What are the characteristics of arrays in c?
What is the use of bit field?
I have a varargs function which accepts a float parameter?
define string ?
Do pointers need to be initialized?
about c language
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Why does not c have an exponentiation operator?
How can you read a directory in a C program?
Is that possible to add pointers to each other?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
Tell me what is the purpose of 'register' keyword in c language?
What do mean by network ?
Is return a keyword in c?