Skip to content

Instantly share code, notes, and snippets.

@kinggoesgaming
Created February 9, 2021 01:57
Show Gist options
  • Save kinggoesgaming/7e3a29375ce142160e1ed32ecb86f4b4 to your computer and use it in GitHub Desktop.
Save kinggoesgaming/7e3a29375ce142160e1ed32ecb86f4b4 to your computer and use it in GitHub Desktop.
class Node {
private:
char data[6];
public:
void copy(char &other);
};
void Node::copy(char &other) {
Node * newNode = new Node();
*newNode->data = other;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment