#include <stdio.h> void main() { int n1 = 1, n2 = 3, n3 = 4; int R = n1 & n2 | n3; printf("%d", R); }
5
Previous Question Next Question
Your comments will be displayed only after manual approval.