Advertisement
Guest User

Untitled

a guest
May 27th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #include "zmienne.cpp"
  2. #include "stdafx.h"
  3. #include "string.h"
  4.  
  5. struct person {
  6. string name;
  7. string surname;
  8. string gender;
  9. int age;
  10. int height;
  11. person* next;
  12. };
  13.  
  14. person* current = NULL;
  15. person* first = NULL;
  16. person* last = NULL;
  17. person* previous = NULL;
  18.  
  19. int w=0;
  20. int i, a;
  21.  
  22. string temp_name;
  23. string temp_sur;
  24. string temp_gender;
  25. int temp_age;
  26. int temp_height;
  27.  
  28. string temp;
  29. string plik;
  30.  
  31. FILE *fp;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement