i am trying to understand increment operators on char:
public class Ch8 { public static void main(String[] args) { char c = 'a'; c++; c = c+1; } }
why does c++ lead to c = 'b' ? i understand why c =c +1 is a error but how come c++ gets away with that error??