Run error in merge sort using recursion

Name of problem is Merge Sort using recursion
my code https://ide.codingblocks.com/s/62366
it is showing run error

Hi Kunj, you have created the temp array of size 100 and that’s why you’re getting run-error because for larger test cases, indexes which are out of bounds will be accessed. Just increase the size of arrays, also change line number 24 to for(int i=s;i<=e;i++) instead of for(int i=0;i<=e;i++).

Here is the updated and working code: https://ide.codingblocks.com/s/62467

Thanks for your help