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 an endless loop?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why void is used in c?
What is the difference between declaring a variable and defining a variable?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
How can you convert integers to binary or hexadecimal?
What is substring in c?
What is s in c?
Is it better to use malloc() or calloc()?
Write a program to swap two numbers without using third variable in c?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Do pointers take up memory?
What is a MAC Address?
How can I invoke another program or command and trap its output?
What is the use of define in c?