Answer Posted / abhishek
c=a^b
here ^ is an exclusive or operator whose equation is
(~(a)b)+(~(b)a)
truth table
a b c
1 1 0
1 0 1
0 1 1
0 0 0
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is sizeof int?
What do you mean by scope of a variable in c?
difference between Low, Middle, High Level languages in c ?
Where are local variables stored in c?
What is array of structure in c programming?
What is the explanation for prototype function in c?
How to get string length of given string in c?
What’s the special use of UNIONS?
What is difference between stdio h and conio h?
What are global variables and how do you declare them?
What are directives in c?
Write a factorial program using C.
write a proram to reverse the string using switch case?
develop algorithms to add polynomials (i) in one variable