#include <stdio.h> int main() { int p = 3, q = 2; int R = (q++) ? q == 1 && p : 1; printf("%d\n", R); return 0; }
0
Previous Question Next Question
Your comments will be displayed only after manual approval.