Sebgg

l2y2

Nov 13th, 2018
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. int main()
  2. {
  3.   Node* first{new Node{5}};
  4.   first->next = first;
  5.   first->value = 10;
  6.   first->next = nullptr;
  7. }
Add Comment
Please, Sign In to add comment