Q:

C# program to demonstrate the bitwise operations

belongs to collection: C# Basic Programs | basics

0

C# program to demonstrate the bitwise operations

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

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);
    }
}

Output:

10 & 2 = 2
10 | 2 = 10
10 ^ 2 = 8
Press any key to continue . . .

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

total answers (1)

C# Basic Programs | basics

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to find the root of a quadratic equatio... >>
<< C# program to calculate the fractional power of nu...