logo

Crowdly

Browser

Add to Chrome

Методом наскрізного перегляду коду протестуйте С-програму та визначте, що викону...

✅ 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;

}

More questions like this

Want instant access to all verified answers on exam.nuwm.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome