domaca_uloha_7

This commit is contained in:
Tomáš Vasiľ 2022-04-26 21:41:30 +02:00
parent d867e4952f
commit b0037f417c

View File

@ -27,11 +27,10 @@ struct snake* remove_snake(struct snake* snake){
struct snake* medzipamat = calloc(1, sizeof(struct snake));
medzipamat = snake;
while (1) {
snake = snake->next;
if (snake->next->next == NULL) break;
}
while (snake->next->next != NULL) snake = snake->next;
free(snake->next);
snake->next = NULL;
snake = medzipamat;