#include <stdio.h> int main() { int num1 = 4, num2 = 2; int num3 = num2 && (num2 |= 20); printf("%d\n", num3); return 0; }
1
Previous Question Next Question
Your comments will be displayed only after manual approval.