QuickSort Algorithm

I am getting Error can anyone please Explain the error and why I am getting error

SIGTSTP this is error Name

This is segmentation error.You called the quick sort function till pivot point but you are suppposed to call it as:
The method you used is known as Lomuto Partition
QuickSort(arr,s,p-1);
QuickSort(arr,p+1,e);