/* Program to demonstrate non recursive merge sort */ #include #include void mergesort(int x[ ], int n) ; void show(int x[ ], int n) ; void main() { int i, n, x[20] ; clrscr() ; printf("Enter the number of elements: ") ; scanf("%d",&n) ; printf("Enter the elements:\n") ; for(i=0 ; i