In the example you link to, the last statement is
mxDestroyArray(array_ptr);
Instead of destroying the array, you need to return it as the output of your MEX-function. Your MEX-function C/C++ source code should have a function named mexFunction (the entry point for the MEX-function) that looks like this:
void mexFunction(int nlhs, mxArray * plhs[], int nrhs, const mxArray * prhs[])
To return an output from the MEX-function, assign it into the plhs array, like this:
plhs[0] = array_ptr; // instead of mxDestroyArray(array_ptr);
Compile the code into a MEX-function (Let's call it sparsetest). Invoke it from MATLAB like this:
>> output = sparsetest;
Now output is a MATLAB variable containing the sparse matrix you created in your MEX-function.
As for storing the data in row-major format, that is not possible. MATLAB only handles column-major sparse matrices.