public class pre_post_increment { public static void main(String[] args) { int c = 5; System.out.println("c = "+ c); c++; System.out.println("c = "+ c); c--; System.out.println("c = "+ c); c = 5; System.out.println("c = "+ (++c)); c = 5; System.out.println("c = "+ (c++)); System.exit(0); } }