write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / jithender palle(vaagdevi wgl)
main()
{
int a=10,b=30,c;
c=a|b;
printf("%d",c);
}
| Is This Answer Correct ? | 8 Yes | 21 No |
Post New Answer View All Answers
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
explain how do you use macro?
Explain null pointer.
What is the difference between the = symbol and == symbol?
What is c++ used for today?
What are different types of variables in c?
What is the use of getchar() function?
Which is better malloc or calloc?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What type of function is main ()?
Calculate 1*2*3*____*n using recursive function??
What is static volatile in c?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?