Practice! c4.2 page 161 Consider the following function: /*-----------------------------------------------------------------*/ /* This function counts positive parameters. */ int positive(double a,double b,double c) { int count; count = 0; if (a >= 0) count++; if (b >= 0) count++; if (c >= 0) count++; return count; } /*-----------------------------------------------------------------*/ Assume that the function is referenced with the following statements: x = 25; total = positive(x,sqrt(x),x-30); 1: Show the memory snapshot of the actual parameters and the formal parameters. 2: What is the new value of total?