struct_access 136 B

1234567891011121314
  1. struct A {
  2. int w;
  3. };
  4. void main() {
  5. A a;
  6. a.w = 3;
  7. test(a.w);
  8. a.w++;
  9. test(a.w);
  10. ++a.w;
  11. test(a.w);
  12. }