\'\'\'
int compare(int e1, int e2){ return (e1>e2);} int mycompare( int e1, int e2, int cmp(int e1, int e2)){ return cmp(e1,e2); } int main() {