#include <stdio.h> void main() { int n = 12; int num = 2 == 3 && n++; printf("%d %d", num, n); }
0 12
Previous Question Next Question
Your comments will be displayed only after manual approval.