I have to make an array of Nodes.
I have #include "Node.h" as my header file
and then in main I am writing the following code
Node[] Node_array = new Node[];
but then I am getting errors referring to the above line:
error C2143: syntax error : missing ';' before '['
error C3409: empty attribute block is not allowed
error C2146: syntax error : missing ';' before identifier 'Node_array'
error C2065: 'Node_array' : undeclared identifier
Will appreciate early reply.