write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / mohith
a=0x08;
d=0x02;
e=a|d;
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
What is context in c?
What is the sizeof () operator?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is the value of uninitialized variable in c?
Why c is faster than c++?
What is the difference between arrays and pointers?
What are the 4 types of programming language?
Explain what is wrong in this statement?
What are the data types present in c?
how to find binary of number?
What is #include stdio h?
Why are all header files not declared in every c program?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What does stand for?
What is quick sort in c?