void test(long* t) { *t = 8L; *t += 1L; } void main() { long a = 5L; long* b = &a; a = 6L; test(a); test(*(b)); test(&a); test(b); test(a); test(*b); }