how to add numbers without using arithmetic operators.
Answer Posted / santhi perumal
#include<Stdio.h>
#include<conio.h>
void main()
{
int a=10,b=20;
while(b--) a++;
printf("Sum is :%d",a);
}
| Is This Answer Correct ? | 9 Yes | 11 No |
Post New Answer View All Answers
What is difference between structure and union?
What is line in c preprocessor?
What is the use of define in c?
Which is more efficient, a switch statement or an if else chain?
Write a program in c to replace any vowel in a string with z?
What is type qualifiers?
What is "Hungarian Notation"?
What do you mean by recursion in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What does emoji p mean?
What is function pointer c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Can you please compare array with pointer?
Explain the difference between ++u and u++?