下列程序的運行結果是()。 #include voidfun(int*s,int*p) {static int t=3; *p=s[t]; t
下列程序的運行結果是( )。
#include<stdio.h>
voidfun(int*s,int*p)
{ static int t=3;
*p=s[t];
t--;
}
void main()
{ int a[]={2,3,4,5},k;
int x;
for(k=0;k<4;k++)
{ fun(a,&x);
printf("%d,",x);
}
}
A.5,4,3,2
B.2,3,4,5,
C.2,2,2,2,
D.5,5,5,5,
正確答案:A解析:分析fun函數程序段,可知fun函數要實現(xiàn)的功能是將s中第(t+1)個元素以前的元素逆置賦給數組p。由于fun中函數定義了靜態(tài)變量t=3,因此,在主函數中調用函數fun(a,&x)時,就是要將數組a中前4個元素逆置賦給數組x,最后輸出x數組。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。