✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What will be printed by the following code?
void printList() {
struct node *p = head;
while (p != NULL) {
printf("%d ", p->data);
p = p->next;
}
}
If head == NULL, the output is: