Problem
Define a function named "searchSumInfo" that accepts an array of SumOfTwo object pointers, its size and another pointer to the search SumOfTwo object. It will go through the array and return two pieces of information
a) How many elements in the array has the same sum value as the search object
b) How many elements in the array have at least one same operand as in the search SumOfTwo object.
c) Show how this function is being called and returning proper values.