Question: Consider the following line of code for calling a function named my _ fun: my _ fun ( dataset , vardata ) ; Which one

Consider the following line of code for calling a function named my_fun:
my_fun(dataset, vardata);
Which one of the following function headers is valid for my_fun, where dataset is an integer array and vardata is an integer variable?
Question 17 options:
void my_fun(dataset, vardata)
void my_fun(int dataset[], int vardata)
void my_fun(int vtdata[], vdata)
void my_fun(int vdata, int vtdata[])

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!