若程序中已包含头文件stdio.h,以下选项中正确运用指针变量的程序段是__________。
A: float*f=NULL;*f=10.5;
B: chart='m',*c=&t;*c=&t;
C: long*L;L='\0';
D: int*i=NULL;scanf("%d",i);
A: float*f=NULL;*f=10.5;
B: chart='m',*c=&t;*c=&t;
C: long*L;L='\0';
D: int*i=NULL;scanf("%d",i);
举一反三
- 若程序中已包含头文件stdio.h,以下选项中,正确运用指针变量的程序段是 A: int *i=NULL;scanf("%d",i); B: float *f=NULL;*f=10.5; C: char t='m', *c=&t;*c=&t; D: long *L; L='0';
- 若程序中已包含头文件stdio.h,以下选项中,正确运用指针变量的程序段是( )。 A: int*i=NULL; B: float*f=NULL; C: chart='m',*c=&t; D: long*L scanf("%d",; *f=10.5; *c=&t; L='\0';
- 若程序中已包含头文件stdio.h,以下选项中正确运用指针变量的程序段是( )。 A: int *i=NULL;<br/>scanf("%d",i); B: float *f=NULL;<br/>*f=10.5; C: char t='m',*c=&t;<br/>*c=&t; D: long *L;<br/>L='\0';
- 若程序中已包含头文件stdio.h,以下选项中,正确运用指针变量的程序段是( )。 A: int*i=NULL; B: float*f=NULL; C: chart='m',*c=&t; D: long*L E: scanf("%d",i); *f=10.5; *c=&t; L='\0';
- 若程序中已包含头文件stdio.h, 以下选项中,正确运用指针变量的程序段是( )。 A: float *f=NULL; scanf("%f",f); B: float a,*f=&a;*f=10.5; C: char t='m', *c=&t;*c=&t; D: long *L;L=\0;