填空题

以下程序的输出结果是______。
main()
int x;0;
sub(&x,8,1);
printf("%d\n",x);

sub(int *a,int n,int k)
if(k<=n) sub(a,n/2,2*k);
*a+=k;

【参考答案】

G
热门 试题