Answers for "bitwise and operator"

C
0

bitwise operator

#include <stdio.h>
int main()
{
    printf("Output = %dn",~35);
    printf("Output = %dn",~-12);
    return 0;
}
Posted by: Guest on September-24-2020
0

bitwise not

Copy CodeNOT 10110101 (decimal 181)
    -------- =
    01001010 (decimal 74)
Posted by: Guest on May-24-2021
0

;bitwise or

#include <stdio.h>
int main()
{
    int a = 12, b = 25;
    printf("Output = %d", a|b);
    return 0;
}
Posted by: Guest on May-21-2021
0

bitwise operator

#include <stdio.h>
int main()
{
    int a = 12, b = 25;
    printf("Output = %d", a&b);
    return 0;
}
Posted by: Guest on September-24-2020

Code answers related to "bitwise and operator"

Code answers related to "C"

Browse Popular Code Answers by Language