Identify the correct prototype for a function that receives an array of doubles, computes the sum of all the elements of the array, and returns the sum to the calling function.
A.
void computeSum(double array[], int size, double * sum);
B.
void computeSum(double array[], int size, double & sum);