#include<stdio.h> int main() { int i; i=0; i++; printf("i = %d\n", i); i=0; ++i; printf("%d\n",i); return 0; }