tomur

program.h

Jun 8th, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. //
  2. // Created by tomur on 08.06.2018.
  3. //
  4.  
  5.  
  6.  
  7. #include <string.h>
  8.  
  9.  
  10. struct dane{
  11. int id;
  12. char* imie;
  13. char* zawod;
  14. float wzrost;
  15. float waga;
  16. int pensja;
  17. int czyJestPomocny;
  18. };
  19. void losujPensje(struct dane tabela);
  20. void wypiszDane(struct dane tabela);
  21. void sortuj(struct dane tabela[]);
Add Comment
Please, Sign In to add comment