填空題

以下程序運行后的輸出結果是()


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題已知函數(shù)原型為:structtree*f(intx1,int*x2,structtreex3,structtree*x4),其中tree為已定義的結構體類型,且有下列變量定義:structtreept,*p;inti;請選擇正確的函數(shù)調用語句()

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);

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

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