User profile: nitishkj

User info
User name:nitishkj
History
Joined:
Number of posts:4
Latest posts:

Mergesort algorithm implementation
Below is the code which I have written to implement the mergesort algorithm in C++. It is giving seg...

Error in function returning pointers
I have changed my code to the following : [code] #include<iostream> using namespace std; int* Me...

Error in function returning pointers
Thanks 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...