C语言帝国
SEARCH
X 我知道了
TIPS:左右滑动导航栏可以查看更多栏目
订阅RSS
首页
C语言帝国QQ群
首页
C语言帝国QQ群
psaff 的 站内主页
2009
01-04
一简单我却不明白的C问题
VIEW
psaff
编程问题提问区
3 条评论
#include "stdio.h" int fun(int *x,int n) {if(n==0) return x[0]; else return x[0]+fun(x+1,n-1); } void main() {int a[]={1,2,3,4,5,6,7}; printf("%d\n",fun(a,3)); } 帮忙分析一下结果为什么会是10? fun(a,3) ....
Read More >
作者档案
昵称:
psaff
邮箱:
psaff@163.com