It is not showing anything

there are 2 issues:

  1. if(in[j]==pre[j])
    {
    index=j;
    break;

it should be in[j]==pre[i]

  1. the call to createTreefromTrav(in,pre,0,n);
    as end point is inclusive, you should pass n-1 , NOT n.

corrected code: https://ide.codingblocks.com/s/215058

please rate and resolve if satisfied.
thanks

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.