Advertisement
Guest User

Untitled

a guest
May 29th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. void ispis_jednog(FILE *out, FILM temp) {
  2. fprintf(out, "%s %.1f %s %u\n", temp.naziv, temp.ocena, temp.zanr, temp.godina);
  3. }
  4. void ispis_liste(FILE *out, CVOR *glava) {
  5. while(glava!=NULL) {
  6. ispis_jednog(out, glava->film);
  7. glava = glava->sledeci;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement