單項(xiàng)選擇題已知函數(shù)原型為:structtree*f(intx1,int*x2,structtreex3,structtree*x4),其中tree為已定義的結(jié)構(gòu)體類型,且有下列變量定義:structtreept,*p;inti;請(qǐng)選擇正確的函數(shù)調(diào)用語句()

A.&pt=f(10,&i,pt,p);
B.p=f(i++,(int*)p,pt,&pt);
C.p=f(i+1,&(i+2),*p,p)
D.f(i+1,&i,p,p);


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題述關(guān)于枚舉類型名的定義中,正確的是()

A.enuma={one,two,three};
B.enuma{one=9,two=-1,three};
C.enuma={"one","two","three"};
D.enuma{"one","two","three"}

4.單項(xiàng)選擇題已知enumweek{sun,mon,tue,wed,thu,fri,sat}day;則正確的賦值語句是()

A.sun=0;
B.san=day;
C.sun=mon;
D.day=sun;

5.單項(xiàng)選擇題

已知下圖,如果要使指針p指向data中的成員a,正確的賦值語句是()

A.p=(structsk*)&data.a;
B.p=(structsk*)data.a;
C.p=&data.a;
D.*p=data.a;