In this question, it is asked to a function defination that recieve three argurments and its name would be issorted. The required function defination, its argument and functional is written below in C++.
bool issorted(int arr[], int count, bool status) // function definition header
{ //function definition body starts
bool flag = true;
if(status == true)
{
for (int i=0; i<count-1; i++) // 'for loop' for ascending order
if (arr[i] > arr[i+1])
flag = false;
}
else
{
for (int i=count-1; i > 0; i--) // 'for loop' for descending order
if (arr[i] > arr[i-1])
flag = false;
}
return flag; // function return true or false as per the descending and ascending orders
} //function definition body ends
You can learn more about C++ Functions at
https://brainly.com/question/16362961
#SPJ4