Question: in C language Is the below pass by reference or value for the arrays in the parameter list? / / function declaration for sum int

in C language
Is the below pass by reference or value for the arrays in the parameter list?
//function declaration for sum
int sum(int intMyIntArray[], int intSize1, char myCharArray[], int intSize2)
{
// sum calculation stub to be implemented later
}
void main(void)
{
int intMyIntArray[20];
char myCharArray[20];
sum( intMyIntArray, 20, myCharArray, 20);
}

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 Databases Questions!