cannot convert double* to double for argument one to double standard_deviation(double int)
12345678
double standard_deviation( double array [ ], int num_value_give) { double total = 0, average = 0, numerator = 0; int num_values_given = 6; for(int b = 1; b < num_values_given; b++) { total += array[b]; }