Here are the function definitions and declarations to transfer the variables and arrays between main and the function as specified: (a) float func1(float a, float b, int jstar[20]) { float x; // function body return x; } int main() { float a, b; int jstar[20]; float x = func1(a, b, jstar); } (b) float func2(int n, char c, double values[50]) { float x; // function body return x; } int main() { int n; char c; double values[50