The source code to demonstrate the bitwise operations is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
//C# program to demonstrate the bitwise operations.
using System;
class Bitwise
{
public static void Main()
{
byte num1 = 10;
byte num2 = 2;
byte result = 0;
result = (byte)(num1 & num2);
Console.WriteLine("{0} & {1} = {2}",num1,num2, result);
result = (byte)(num1 | num2);
Console.WriteLine("{0} | {1} = {2}", num1, num2, result);
result = (byte)(num1 ^ num2);
Console.WriteLine("{0} ^ {1} = {2}", num1, num2, result);
}
}
Here, we created a class Bitwise that contains the Main() method. Here, we declared three variables of byte type that are initialized with 10, 2, and 0 respectively.
Program:
The source code to demonstrate the bitwise operations is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.
Output:
Explanation:
Here, we created a class Bitwise that contains the Main() method. Here, we declared three variables of byte type that are initialized with 10, 2, and 0 respectively.
result = (byte)(num1 & num2); Console.WriteLine("{0} & {1} = {2}",num1,num2, result); result = (byte)(num1 | num2); Console.WriteLine("{0} | {1} = {2}", num1, num2, result);In the above code, we performed the bitwise AND, bitwise OR, and bitwise XOR operations and printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer