Bitwise Operators - Programming

Q1:

What will be the output of the program ?
#include<stdio.h>

int main()
{
    int i=4, j=8;
    printf('%d, %d, %d\n', i|j&j|i, i|j&&j|i, i^j);
    return 0;
}

A 4, 8, 0

B 1, 2, 1

C 12, 1, 12

D 0, 0, 0

ANS:A - 4, 8, 0

No answer description is available. Let's discuss.