A.int *p;
scanf("%d",p);
…
B.int *s, k;
*s=100;
C.int *s, k;
char *p, c;
s=&k;
p=&c;
*p=′a′;
D.int *s, k;
char *p, e;
s=p;
*s=1;