阅读程序,则执行后的结果为main() { inti,m,n; for(i=0;i<3;i++) {m=test1();n=test2(); } printf("%d,%d\n",m,n); } test1() { intx=0; x++;returnx;} test2() { staticintx=0;x++;returnx;}
A. 1,1
B. 1,3
C. 3,1
D. 3,3
以下程序中函数sort的功能是对a数组中的数据进行由大到小的排序 void sort(int a[],int n) {int i,j,t; for(i=0;i
A. 1,2,3,4,5,6,7,8,9,10,
B. 10,9,8,7,6,5,4,3,2,1,
C. 1,2,3,8,7,6,5,4,9,10,
D. 1,2,10,9,8,7,6,5,4,3,
下列程序执行后的输出结果是charst[]="hello,friend!"; voidfunc1(inti) { printf("%c",st[i]); if(i<3){i+=2;func2(i);} } voidfunc2(inti) { printf("%c",st[i]); if(i<3){i+=2; func1(i);} } main() { inti=0; func1(i); printf("\n");}
A. hello
B. hel
C. hlo
D. hlm