✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Методом наскрізного перегляду коду протестуйте С-програму та визначте, що виконується у фрагменті програми: struct ok { int number; char name;struct ok *next; };int i; struct ok * current, *first, *last;first=(struct ok*)malloc(sizeof(struct ok));first->next=NULL;first->number=0;gets(first->name);last=first;for(i=1;i<100;i++){ current=(struct ok*)malloc(sizeof(struct ok));current->number=i;gets(current->name);current ->next=NULL;last->next=current;last=last->next;}