NULL이 선언되지 않은 이유는 무엇입니까?
이 코드를 컴파일하려고 할 때이 구조체 생성자에 문제가 있습니다. typedef struct Node { Node( int data ) // { this->data = data; previous = NULL; // Compiler indicates here next = NULL; } int data; Node* previous; Node* next; } NODE; 내가 올 때이 오류가 발생합니다. \linkedlist\linkedlist.h||In constructor `Node::Node(int)':| \linkedlist\linkedlist.h|9|error: …