#include <stdio.h> int main() { int a = 4, b = 4; int c = a ^ b & 3; printf("%d\n", c); }
4
Previous Question Next Question
Your comments will be displayed only after manual approval.