Bu kodu derlemeye çalıştığımda bu yapı oluşturucusuyla ilgili bir sorun yaşıyorum:
typedef struct Node
{
Node( int data ) //
{
this->data = data;
previous = NULL; // Compiler indicates here
next = NULL;
}
int data;
Node* previous;
Node* next;
} NODE;
geldiğimde bu hata oluşuyor:
\linkedlist\linkedlist.h||In constructor `Node::Node(int)':|
\linkedlist\linkedlist.h|9|error: `NULL' was not declared in this scope|
||=== Build finished: 1 errors, 0 warnings ===|
Son sorun yapıtı, ancak main.cpp'mdeyken iyi çalıştı, bu sefer bir başlık dosyasında ve bana bu sorunu veriyor. Bu kodu derlemek için Code :: Blocks kullanıyorum