单项选择题

以下选项中,正确运用指针变量的程序段是( )。

A.int*i=NULL;
B.float*f=NULL;
scanf("%d",i); *f=10.5;
C.char t='m',*C=&t;
D.long*L;
*C=&t; L='0';