#ifndef NODE_H #define NODE_H struct Node { int _num; Node* _next; }; #endif // !NODE_H