私はCが初めてで、ビジュアルスタジオを使用しています。この関数を書いているときに、このエラーが発生しました(不完全なクラス型へのポインタは許可されていません)。どうしてか分かりません。
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;
}