Question: Write a C++ function which, when called, prints out the truth-table for a three input XOR (exclusive OR) gate. Use the bitwise operator ^ to
Write a C++ function which, when called, prints out the truth-table for a three input XOR (exclusive OR) gate. Use the bitwise operator ^ to implement your function code. The output of your function should appear as follows:
A B C XOR 0 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 1 1 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
