I cant complete this code for sorting the matrice:
CODE
nt main()
{
readMatrice(A,n,m);
printMatrice(A,n,m);
convertMatriceToVector(A,n,m,V);
writeVector(V);
sortVector(V);
writeVector(V);
convertVectorToMatrice(V,n,m,A);
printMatrice(A,n,m);
cin.get();
return 0;
}
If you could please help me with this codes.
I am new here.