#include<stdio.h>
int main(void) {
int a, b, *p, *q;
p = &a; q = &b; *q = 1; a = 3; b = *p;
printf("%d, %d, %d, %d¥n", a, b, *p, *q );
return 0; }