Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which of the following function declarations correctlyaccepts an integer array and its size as parameters?
Which of the following function declarations correctly
accepts an integer array and its size as parameters?
voidprocessArray(int arr[10]);
void
processArray(int arr[10]);
voidprocessArray(int *arr[], int size);
processArray(int *arr[], int size);
voidprocessArray(int * , int);
processArray(int * , int);
voidprocessArray(int [] , int);
processArray(int [] , int);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!