Run error is showing to me while it is working in vscode

#include<bits/stdc++.h>
using namespace std;
int maxsum(int a[], int size)
{
int max_so_far = INT_MIN, max_ending_here = 0;

for (int i = 0; i < size; i++)
{
    max_ending_here = max_ending_here + a[i];
    if (max_so_far < max_ending_here)
        max_so_far = max_ending_here;

    if (max_ending_here < 0)
        max_ending_here = 0;
}
return max_so_far;

}

int main()
{

int A[10000],N,msum[10000],z;
cin>>z;
for(int j=0;j<z;j++)
{
    cin>>N;
    for(int i=0;i<N;i++)
        cin>>A[i];
    msum[j]=maxsum(A,N);
}
for(int k=0;k<z;k++)
cout<<msum[k]<<endl;
return 0;

}

hi @aryanrstg26, increase array size
change to this --> int A[1000000],N,msum[1000000],z;

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.