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