Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

Bitwise operators in C/C++

// C Program to demonstrate use of bitwise operators
#include <stdio.h>
int main()
{
    // a = 5(00000101), b = 9(00001001)
    unsigned char a = 5, b = 9;
 
    // The result is 00000001
    printf("a = %d, b = %d
", a, b);
    printf("a&b = %d
", a & b);
 
    // The result is 00001101
    printf("a|b = %d
", a | b);
 
    // The result is 00001100
    printf("a^b = %d
", a ^ b);
 
    // The result is 11111010
    printf("~a = %d
", a = ~a);
 
    // The result is 00010010
    printf("b<<1 = %d
", b << 1);
 
    // The result is 00000100
    printf("b>>1 = %d
", b >> 1);
 
    return 0;
   
}
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #Bitwise #operators
ADD COMMENT
Topic
Name
5+8 =