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
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
string reverse using recursion
Does free set pointer to null?
Why is python slower than c?
Is c high or low level?
What are the different types of constants?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Explain what is the difference between a free-standing and a hosted environment?
What does != Mean in c?
What are the two types of functions in c?
Why main is not a keyword in c?
What are the different types of data structures in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Is there anything like an ifdef for typedefs?
Is javascript written in c?