How to add two numbers without using arithmetic operators?
Answer Posted / selloorhari
Hi,
This is the code for a FULL ADDER circuit.
| Is This Answer Correct ? | 22 Yes | 12 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How old is c programming language?
Explain main function in c?
Explain what are linked list?
Why do we use main function?
What is wrong with this program statement? void = 10;
What is equivalent to ++i+++j?
What are the 32 keywords in c?
What are examples of structures?
What is the process to generate random numbers in c programming language?
What is indirection?
What is keyword with example?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
how to make a scientific calculater ?