Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Bitwise Boolean Operators

#include <stdio.h>

int main()
{
    unsigned char a=0b01010101;
    unsigned char b=0b10101010;
    unsigned char c;
    
    c=a&b;
    
    printf("a&b=%x\n\r",c);

    c=a|b;
    
    printf("a|b=%x\n\r",c);

    c=b^a;
    
    printf("b^a=%x\n\r",c);
    return 0;
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.