Реферат: Двунаправленный динамический список
n=n+i+strlen((*temp).b_day)+strlen((*temp).b_manth)+strlen((*temp).b_year);
i=1;
while (i<61-n)
{
printf(" ");
i++;
}
printf("%s",(*temp).zodiak);
temp=(*temp).next;
}
while (temp!=NULL);
}
scanf("%s");
}
/*************************************************************/
void Sortir ( )
{
struct inform *tmp;
int m;
clrscr();
if (first!=NULL)
{
m=1;
while(m==1)
{
m=0;
temp=first;
while((*temp).next!=NULL)
{