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
What is #include conio h?
What are the two types of structure?
Why c is procedure oriented?
What tq means in chat?
What are register variables in c?
Do you know what are the properties of union in c?
Can a void pointer point to a function?
What are the similarities between c and c++?
Is c++ based on c?
Explain what does the function toupper() do?
Is c dynamically typed?
What is malloc() function?
Why flag is used in c?
When we use void main and int main?
What is data structure in c language?