how does the qsort function work in C
qsort( s , n , sizeof(struct coord) , compare );
how can one manipulate the compare function in qsort while sorting structure rather than a array like above and how does changes in the compare function reflect in the overall sort result...