我是 C 新手,正在使用 Visual Studio。在编写此函数时,我收到此错误(不允许使用指向不完整类类型的指针)。我不知道为什么。
int Length(struct node* head)
{
struct node* current = head;
int count = 0;
while (current != NULL)
{
count++;
current = current->next; <-- error here when pointing current to next
}
return count;
}