Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef bin_H
- #define bin_H
- #include <vector>
- using std::vector;
- const int SIZE = 250;
- struct Students
- {
- char fullname[SIZE];
- int course;
- int group;
- char label[SIZE];
- };
- void transfer(char*);
- int numberOfRecords(char* direction);
- vector <Students> getAllRecordsFromFile(char* direction);
- void showRecords(char* direction);
- void addRecordToBack(char* direction);
- void deleteRecord(char* direction);
- void editRecord(char* direction);
- #endif
Advertisement
Add Comment
Please, Sign In to add comment