Answers for "bitwise operation"

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 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 "C"

Browse Popular Code Answers by Language