#include int main() { int a = 5; int b = 3; int c = a-- * ++b; printf("c = %d\n", c); return 0; }