System.out.printf("c before postincrement: %d%n", c); // prints 5 System.out.printf(" postincrementing c: %d%n", c++); // prints 5 System.out.printf(" c after ...