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