SkeptaProgrammer

Untitled

Jun 19th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1.  
  2. #ifndef bin_H
  3. #define bin_H
  4.  
  5. #include <vector>
  6. using std::vector;
  7. const int SIZE = 250;
  8. struct Students
  9. {
  10.     char fullname[SIZE];
  11.     int course;
  12.     int group;
  13.     char label[SIZE];
  14. };
  15. void transfer(char*);
  16. int numberOfRecords(char* direction);
  17. vector <Students> getAllRecordsFromFile(char* direction);
  18. void showRecords(char* direction);
  19. void addRecordToBack(char* direction);
  20. void deleteRecord(char* direction);
  21. void editRecord(char* direction);
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment