fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main()
  5. {
  6. FILE *fp;
  7.  
  8. fp = fopen("prueba.txt", "w");
  9. fprintf(fp, "1 en el fichero. \n");
  10. printf("2 en el fichero. \n");
  11.  
  12. fclose(fp);
  13.  
  14. return 0;
  15. }
Runtime error #stdin #stdout 0s 9416KB
stdin
Standard input is empty
stdout
Standard output is empty