Hello my problem is the following;
i have this struct
struct item{
char id[5];
int ing[10];
float qtd[10];
};
and i have a binary file with information, and i want to delete a selected id, i tryed this
int remove(){
FILE *origem;
FILE *copia;
char menu[10];
struct item aux;
origem=fopen("menu.bin","rb");
copia=fopen("temp.bin","wb");
if(origem==NULL || copia==NULL)
return;
do{
printf("name to delete");
scanf("%s",&menu);
if(stricmp(menu,aux.id)!=0)
fwrite(&aux,sizeof(aux),1,copia);
}while(fread(&aux,sizeof(aux),1,origem)==1);
fclose(origem);
fclose(copia);
remove("menu.bin");
rename("temp.bin","menu.bin");
}
can you help me? i want to copy the cotents except the ID i choose. thanks in advance.
renameand also calling a system functionrename. – Joachim Pileborg Jun 7 '12 at 4:41scanfto get a name from the user, i.e. fromstdinnot from a file. – Joachim Pileborg Jun 7 '12 at 4:42