struct elem { int inf; elem *adr; elem(int n, struct elem *p): inf(n),adr(p) {} };
i have a list. and i need to reverse it
My cod