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. print a;
  10. print *(b);
  11. test(&a);
  12. test(b);
  13. print a;
  14. print *b;
  15. }