填空題

設有三人的姓名和年齡存在結(jié)構體數(shù)組中,以下程序輸出年齡居中者的姓名和年齡。請?zhí)羁铡?br />


您可能感興趣的試卷

你可能感興趣的試題

4.單項選擇題已知函數(shù)原型為:structtree*f(intx1,int*x2,structtreex3,structtree*x4),其中tree為已定義的結(jié)構體類型,且有下列變量定義:structtreept,*p;inti;請選擇正確的函數(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);

5.單項選擇題述關于枚舉類型名的定義中,正確的是()

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