通体大理石瓷砖,是大瓷砖坯体与表面纹理颜色____的大理石瓷砖的升级产品。
查看答案
好汉做事好汉当。
A goodman has the courage to accept the consequences of hisown actions.
B. A trueman has the courage to accept the consequences of hisown actions.
若定义pf为指向float类型变量f的指针,下列语句中__是正确的。
A. float f, *pf = f;
B. float f, *pf = &f;
C. float *pf = &f, f;
D. float f, *pf =0.0;
下面程序的输出结果是( )。#includevoid fun (int *x, int *y){printf("%d%d", *x,*y);*x=3; *y=4;}int main(void){int x=1,y=2;fun(&x,&y);printf("%d%d", x, y);return 0;}
A. 2 1 3 4
B. 1 2 1 2
C. 1 2 3 4
D. 2 1 1 2
在说明语句“ int *f( );”中,标识符 f 代表是( )。
A. 一个用于指向整型数据的指针变量
B. 一个用于指向一维数组的行指针
C. 一个用于指向函数的指针变量
D. 一个返回值为指针型的函数名