SFU ID: 301415720Github username: sean698Github: https://github.com/sean698Expected behavior: Trying to eliminate the first element in the pre[] array.char pre[] = 'abc', and I am trying to eliminate the first element. When pre[i]=pre[i+1] I got a segmentation fault. I am so confused. The following is my code in the build_tree() function.for(int i = 0; i < 2; i++) {pre[i]=pre[i+1];}