void printLinkedList(node *head) { if (head == NULL) { printf(«(empty string)»); return; } printf(«Data: %d\n», head->data); printLinkedList(head->next); } Проблема в том, что если head не равен NULL, он…

IT Шеф
We use cookies in order to give you the best possible experience on our website. By continuing to use this site, you agree to our use of cookies.
Accept
Privacy Policy