以下选项中,正确运用指针变量的程序段是()。
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';
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;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;<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: 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: 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;
- 以下选项中,正确运用指针变量的程序段是()。 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';