Advertisement
Usow_Maxim

Lab_8.11/module.h

Jun 8th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. ///////////////////////////
  2. //Lab_8.11/module.h
  3. ///////////////////////////
  4.  
  5. #include <windows.h>
  6. #include <stdio.h>
  7.  
  8. struct sessiya
  9. {
  10.     char name[20];
  11.     char surname[20];
  12.     char otch[20];
  13.     int ist;
  14.     int prog;
  15.     int matem;
  16.     int phis;
  17.     int srznach;
  18. };
  19. int proverka();
  20. int proverka2();
  21. int proverka3(int kolvo);
  22. sessiya* vvod(sessiya* vse, int kolvo);
  23. sessiya* pam(sessiya* vse, int kolvo);
  24. sessiya* udalenie(sessiya* vse, int kolvo);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement