rornoanparn

Untitled

Feb 26th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. void inserLast(List &L, address P) {
  2.         next(last(L)) = P;
  3.         last(L) = P;
  4. }
Advertisement
Add Comment
Please, Sign In to add comment