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
Can we increase size of array in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Write a program of advanced Fibonacci series.
Hi can anyone tell what is a start up code?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
When should structures be passed by values or by references?
write a c program for swapping two strings using pointer
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Write a program to check armstrong number in c?
What math functions are available for integers? For floating point?
what is recursion in C
What is the role of && operator in a program code?
What is a far pointer in c?
Dont ansi function prototypes render lint obsolete?
Which header file should you include if you are to develop a function which can accept variable number of arguments?