Posts by abdulay fonseca • 31 points
1 post
-
1
votes1
answer44
viewsQ: I’m not able to store data in the file it creates the file but only stores nothing
void Criar_Ficheiro_Pizza() { FILE *B; if ((B = fopen("Pizzas.txt", "a")) == NULL) printf("\n\t !!! Ficheiro nao pode ser guardado!!!"); else { pizzas *aux; while(aux!=NULL) { fprintf(B,"%d\t %c\t…
casked abdulay fonseca 31