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