前方宣言を使用していますが、それでも ERROR: 'link' does not name a type. が表示されます。なんで?
struct link;
struct node
{
link *head_link; <------- this is the error location
node *next_node;
};
struct link
{
link *next_link;
node *connect_node;
};