Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #include<string>
  2. #include<iostream>
  3. using namespace std;
  4.  
  5. struct Dog
  6. {
  7. int id;
  8. string name;
  9. Dog *next;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement