#include <stdio.h> int main() { int p = 3; if (4 |(p = 4)) printf("p is %d\n", p); else printf("%d\n", p); }
p is 4
Previous Question Next Question
Your comments will be displayed only after manual approval.