Guest User

Untitled

a guest
Jan 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class MyList
  2. {
  3. private:
  4. public:MyList(int); // why can't I define stuffs here?
  5. };
  6.  
  7. MyList::MyList(int s) // why is this outside of the class?
  8. {
  9. }
Add Comment
Please, Sign In to add comment