Posts by Victor De Sá Nunes • 11 points
1 post
-
1
votes2
answers98
viewsA: how do I save the data entry permanently
You can try to create a pointer that writes in files. For this, try the following: FILE *arq = fopen("endereço_do_teu_arquivo", "w"); //Esse parâmetro w significa escrita (write) every time you save…