Advertisement
Denny707

wra

Jun 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. FILE *file;
  2. file = fopen("elencomerci.txt","w");
  3. fprintf(file,"%d",127773);
  4. fclose(file);
  5.  
  6. FILE *file;
  7. file = fopen("elencomerci.txt", "r");
  8. int buff = 0;
  9. fscanf(file, "%d",&buff);
  10. printf("%d",buff);
  11. fclose(file);
  12.  
  13. FILE *fapp;
  14. fapp = fopen ("quasifiniti.txt","a");
  15. fprintf(fapp,"%d %d\n",codice, quantita);
  16. fclose(fapp);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement