cannot understand where the error is
Stock span problem
hi @amishatinni_6d07a38b7467ac6d update your main code like this
int main()
{
int n;
cin>>n;// take input
int prices[n];
for(int i=0;i<n;i++)cin>>prices[i];//take input
int span[n]={0};
stockspan(prices,n,span);
for(int i=0;i<n;i++)
{
cout<<span[i]<<" ";
}
cout<<"END"; // print this
return 0;
}
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.