Answers for ";bitwise"

1

;bitwise

#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

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

Browse Popular Code Answers by Language