int sum(int arr[], int start, int len) { // Recursion base condition if(start >= len) return 0; return (arr[start] + sum(arr, start + 1, len));