/* test102.c L. Stewart xxx */ /* test increment and decrement of static */ int state; main() { state += 1; state++; ++state; state -= 1; state--; --state; };