logic for x=y^n
Answer / 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 |
every function has return the value?
Does sprintf put null character?
Why is void main used?
Write program to remove duplicate in an array?
How #define works?
What is encapsulation?
to convert a string without using decrement operater and string functions
What are the __date__ and __time__ preprocessor commands?
all c language question
What is wild pointer in c?
how to find greatet of 10 numbers without using array?
Define recursion in c.