注意:此页面搜索的是所有试题
有以下程序:#include <stdio.h>int f( int t[], int );main(){int a[4] = { 1, 2, 3, 4 }, s;s = f( a, 4 ); printf( "%d\n", s );}int f( int t[], int ){if ( > 0 )return(t[- 1] + f( t, - 1 ) );else return(0);程序运行后的输出结果是( )。
·4
·}
·10
·14
·6

参考答案