variable++ is probably even better for a simple increment (variable-- for decrement). Of course, the compiler may recognize this and translate "++" and "+=1" as the same. (...) (23 years ago, 14-Feb-02, to lugnet.org.ca.rtltoronto)
(...) Well if its a good compiler, v = v + 1; v += 1; v++; v -= -1; s = 1; v += s; would all be equivalent. Derek (23 years ago, 14-Feb-02, to lugnet.org.ca.rtltoronto)