how to add two numbers without using arithmetic operators?
Answer Posted / mallikarjun
#include<stdio.h>
#include<conio.h>
main()
{
int a= 10;
int b=5;
sum=0;
sum= a&&b;
printf(" sum= %d",sum);
}
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
write a progrmm in c language take user interface generate table using for loop?
Are c and c++ the same?
What is volatile, register definition in C
Do array subscripts always start with zero?
What is a volatile keyword in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
what will be maximum number of comparisons when number of elements are given?
Why we use conio h in c?
What is meant by preprocessor in c?
What is getche() function?
What is realloc in c?
write a proram to reverse the string using switch case?
Can a function argument have default value?
What is far pointer in c?
How do you determine whether to use a stream function or a low-level function?