Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. struct Nod
  4. {
  5. int val;
  6. Nod *urm;
  7. };
  8.  
  9.  
  10. void InserareFata(Nod *&cap);
  11. void Afisare(Nod *cap);
  12. void AfisareInvers(Nod *cap);
  13. void Testare_Existenta_nr_lista(Nod *cap, int valoare_cautata);
  14. void Inserare_pozitie_data(Nod *cap);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement