write down the prototype of each function call in c
given
double a [5], b, *c;
function1(a[0],&b);
function2(a,&a[0]);
Solution
prototypes:—————-function1(double, double*);function2(double[], double*);
write down the prototype of each function call in c
given
double a [5], b, *c;
function1(a[0],&b);
function2(a,&a[0]);
Solution
prototypes:—————-function1(double, double*);function2(double[], double*);