Guest User

Untitled

a guest
May 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. dodaj(Student *nazwa_studenta){
  2.  
  3. Element *nowy,*biez;
  4.  
  5. nowy=new element;
  6. nowy->kurwa=nazwa_studenta;
  7.  
  8. if(glowa==NULL){
  9. nowy->nast=NULL;
  10. glowa=nowy;
  11. ostatni=glowa;
  12. }
  13. else{
  14. biez=glowa;
  15. while(biez->nast!=NULL)
  16. biez=biez->nast;
  17.  
  18. nowy->nast=NULL;
  19. biez=nowy;
  20. ostatni=nowy;
  21. }
  22.  
  23.  
  24. }
Add Comment
Please, Sign In to add comment