Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. void clear_students(student *std[]){
  2. int i=0;
  3. while(std[i]!=NULL){
  4. free(std[i]);
  5. std[i]=NULL;
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement