Given an array of integers, return the sum of all odd elements.
Complete the following file:
prog.cpp
#include <iostream> using namespace std; int sumAllOddElements(const int arr[], int arr_size) {
}