Given an array of integers, find the largest product of two different elements. You may assume there are at least 2 elements.
Complete the following file:
prog.cpp
#include <iostream> using namespace std; int largestOfTwo(const int arr[], int arr_size) {
}