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