Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "library.h"
- #include <iostream>
- using namespace std;
- int main()
- {
- Queue queue;
- ifstream file1("input.txt");
- ofstream file2("output.txt");
- queue.Read(file1);
- queue.Delete();
- queue.Delete();
- queue.enter(123);
- queue.Print(file2);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement