本文介绍了如果[]是一个数组,+ 1意味着什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

代码是这样的:



the code is like this :

int sumr(int n , int a[])
{
  if (n==1)
return a[0];
  else return a[0]+ sumr(n-1 , a+1 );
}





最后一行a + 1?



我尝试了什么:



我认为这意味着下一个号码或者什么......但是我不确定......



the a+1 in the last line ??

What I have tried:

I think it means the next number or something ... but I'm not sure ...

推荐答案



这篇关于如果[]是一个数组,+ 1意味着什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 10:30