Question: A 1. Write a program in C using bitwise AND &, OR |, XOR^ operators. Input two numbers and print output of AND, OR, XOR

A 1. Write a program in C using bitwise AND &, OR |, XOR^ operators. Input two numbers and print output of AND, OR, XOR operators between these two numbers and give explanations with the binary form of decimal numbers. The first number is your birth date and the second number is your birth month. For example: Input birth date: 10 binary form 0000 1010 Input birth month: 2 binary form 0000 0010 Result: After doing bitwise AND the result would be 2 binary form 0000 0010 Result: After doing bitwise OR the result would be .... Result: After doing bitwise XOR the result would be
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
