Mergesort algorithm implementationBelow is the code which I have written to implement the mergesort algorithm in C++. It is giving seg...
Error in function returning pointersI have changed my code to the following : [code] #include<iostream> using namespace std; int* Me...
Error in function returning pointersThanks for the answer, point no. 2 worked as for 1, what do u advise me to do, given that i want to...
Error in function returning pointers[code]#include<iostream> using namespace std; int* Merge(int* a,int* b,int m,int n) { int...