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
Explain a file operation in C with an example.
Is python a c language?
Linked lists -- can you tell me how to check whether a linked list is circular?
Explain what is the difference between null and nul?
What does s c mean on snapchat?
Give differences between - new and malloc() , delete and free() ?
Write a program to print “hello world” without using semicolon?
What does calloc stand for?
code for quick sort?
When is the “void” keyword used in a function?
What is the purpose of realloc()?
Explain the difference between exit() and _exit() function?
Which is better pointer or array?
What is the difference between new and malloc functions?
What does %d do in c?