#include <stdio.h> int main() { int k = 2; if (k++ && (k == 3)) { printf("Yes\n"); } else { printf("No\n"); } }
Yes
Previous Question Next Question
Your comments will be displayed only after manual approval.