Not able to find error < Sorted Array >

#include

using namespace std;

bool IsSorted(int A[],int n)
{
if (n==0 || n==1)
{
return true;
}
if (A[0]<A[1] && IsSorted(A+1,n-1))
{
return true;
}
return false;
}

int main()
{
int n;
cin>>n;

int Array[n];
for (int i = 0; i < n; i++)
{
    cin>>Array[i];
}

cout<<IsSorted(Array,n);
return 0;

}

Hello @rprahulpal03 i have corrected your code and commented the mistake:


if you have any doubt you can ask here:
Happy Learning!!

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.