I created a function to return the result of all the odd numbers in a vector.
int oddProduct(std::vector<int> arr) {
int sum = 1;
for (int i = 0; i <= arr.size(); i++) {
if (arr[i] % 2 != 0){
sum *= arr[i];
std::cout << " " << arr[i];
}
}
return sum;
}
The function worked with every other vector I inputted and the print statements even show that the elements of the vector I multiply are both equal to 5. (btw I was using repl.it)