long_reference 197 B

12345678910111213141516
  1. void test(long* t) {
  2. *t = 8L;
  3. *t += 1L;
  4. }
  5. void main() {
  6. long a = 5L;
  7. long* b = &a;
  8. a = 6L;
  9. test(a);
  10. test(*(b));
  11. test(&a);
  12. test(b);
  13. test(a);
  14. test(*b);
  15. }