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