rornoanparn

Untitled

Feb 24th, 2020
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. void show(List L) {
  2.     P = first(L);
  3.     while ( next (P) != NULL){
  4.         cout<<(info(P));
  5.         P = next(P);
  6.     }
  7.     cout<<(info(P));
  8. }
Advertisement
Add Comment
Please, Sign In to add comment