Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include "Modul.h"
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. TList Liste = 0; //die leere Liste
  9.  
  10. IsListEmpty(Liste);
  11. Print(Liste);
  12.  
  13. Prepend(Liste, 1);
  14. Prepend(Liste, 15);
  15. Prepend(Liste, 3);
  16.  
  17. cout << endl;
  18. Print(Liste);
  19.  
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement