THANKS......... ...
It worked out!!!!!!!!!!! :) #thnkusomuch #onceagain :)
User Profile
Collapse
-
type mismatch
line 15:type mismatch in redclaration of 'merge'
#include<stdio. h>
#include<conio. h>
void mergeSort(int x[],int lb,int ub)
{
int m;
if(lb<ub)
{
m=(lb+ub)/2;
mergesort(x,lb, m);
mergesort(x,m+1 ,ub);
merge(x,lb,m,ub );
}
}
void merge(int x[],int lb,int m,int ub)
{
int temp[20],i,j,k;
...
No activity results to display
Show More
Leave a comment: