C program for Quick sort and Mege sort using recursion

/*Implement Quick sort and Mege sort using recursion        */


output :>
1)Quick Sort
2)Merge Sort
3)Quit
Enter your choice : 1
 
Enter no of elements :3
 
Enter array elements :44
56
68
 
Sorted array is :44  56  68
1)Quick Sort
2)Merge Sort
3)Quit
Enter your choice : 2
 
Enter no of elements :3
 
Enter array elements :74
36
25
 
Sorted array is :25   36   74
1)Quick Sort
2)Merge Sort
3)Quit
Enter your choice : 3