Could you tell me why i am getting segmentation error 18

#include
#include
using namespace std;

int convert(char str[], int n)
{
if(str[0]==’\0’)
return 0;

 int d=str[n-1]-'0';
 
 return convert(str,n-1)*10+d;

}
int main() {
char str[11];
cin>>str;

cout<<convert(str,strlen(str));

return 0;

}

hello @amangupta
ur base case is not correct.
it should be if n==0 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.