write the definition of a function named issorted that receives three arguments in the following order: an array of int an int that indicates the number of elements in the array a bool if the bool argument is true then the function returns true if the array is sorted in ascending order. otherwise, the function returns false. if the bool argument is false then the function returns true if the array is sorted in descending order. otherwise, the function returns false. in all other cases, the function returns false.

Respuesta :

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