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