Реферат: Объектно ориентированое програмирование на С
}
while (temp);
cout<<"\n";
return;
};
int list::fput_list(char* s)
{
FILE* f;
if ((f=fopen(s,"w+"))==NULL)
{
cout << "Can not open file "<<s<<"\n";
return 0;
};
if (!first) fclose(f);
element* temp=first;
do
{
fputs(temp->info,f);
fputs("\n",f);
temp=temp->down;
}
while (temp);
fclose(f);
return 1;
};
int list::fget_list(char* s)
{
int ff=2;
if (first!=NULL)