Home » C Programming » Structures, Unions, Enums

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; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!