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