Write Prototype Function Call C Given Double 5 B C Function1 0 B Function2 0 Q37043454

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*);;

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.