inc 151 B

12345678910
  1. void main() {
  2. int* a = new int[1];
  3. a[0] = 0;
  4. a[0]++;
  5. ++a[0];
  6. test(a[0]++);
  7. test(a[0]++);
  8. test(++a[0]);
  9. test(++a[0]);
  10. }