Receiving errors "C2057: expected constant expression" and "C2466: cannot allocate an array of constant size 0" on the second line when compiling.
I've looked into the error and the internet tells me that this usually happens because the compiler doesnt know how big the array needs to be but in this case I've told it in the line before.
const unsigned int N = 190788;
node* table[N];