Slyfoxx724

p9.c

Dec 7th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. 1 #include "prog9.h"
  2. 2
  3. 3 void print_list(PERSON *person_ptr)
  4. 4 {
  5. 5 while(person_ptr != NULL)
  6. 6 {
  7. 7 printf("Name = %s\n", person_ptr->name);
  8. 8 printf("Age = %i\n\n", person_ptr->age);
  9. 9
  10. 10 person_ptr = person_ptr->next_ptr;
  11. 11 }
  12. 12 }
Add Comment
Please, Sign In to add comment