Post and Pre Increment Operators
Notes1: package IncrementOperators; public class Post { public static void main(String[] args) { int no = 1; no = no+1; //no+=1 –> no++; System.out.println(no); //2 } } output: 2 Notes2:… Weiterlesen »Post and Pre Increment Operators