Broken calculator


first testcase is showing runtime error.all the other testcases have passed.

Hello @srshubhi398,

Your code is producing run-time error for large values of n for which the result contains more than 500 digits:
Example:
500

Solution:
Increase the size of the res[] array

Modification:
int res[10000];

Hope, this would help.
Give a like if you are satisfied.

1 Like

thanks a lot for the help.

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.