Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. int main()
  2. {
  3. Tel* glowa;
  4. cout<<"uploading library..."<<endl;
  5. glowa=tworz_liste_pr("tekst.txt");
  6. cout<<endl<<endl;
  7. cout<<"library uploaded...";
  8.  
  9. drukuj(glowa);
  10. cout<<endl<<endl;
  11. //showKeys(glowa);
  12. /*
  13. if (szukane_slowo(glowa, "a"))
  14. cout << "jest tutaj";
  15. else
  16. cout << "nie ma ";
  17.  
  18. */
  19. szukane_slowo(glowa, "da");
  20. kasuj(glowa);
  21.  
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement