return 0;
} else {
return sum(arr, n - 1) + arr[n - 1];
}
what do sum(arr,n-1) return??
The sum of the first n-1 elements of arr.
Обсуждают сегодня