Ver Mensaje Individual
  #15 (permalink)  
Antiguo 15/03/2011, 14:20
fingeroso
 
Fecha de Ingreso: marzo-2011
Mensajes: 13
Antigüedad: 13 años, 8 meses
Puntos: 0
Respuesta: Problema con sobrecarga operadores +=

Código C++:
Ver original
  1. void guardar (void){
  2.         ofstream fichero ("datos.txt");
  3.         fichero << n << endl;
  4.         for (int i=0;i<n;i++){
  5.             fichero << lista[i].nombre << endl;
  6.             fichero << lista[i].apellidos << endl;
  7.             fichero << lista[i].f1.dd << endl;
  8.             fichero << lista[i].f1.mm << endl;
  9.             fichero << lista[i].f1.aa << endl;
  10.             fichero << lista[i].d1.calle << endl;
  11.             fichero << lista[i].d1.numero << endl;
  12.             fichero << lista[i].d1.localidad << endl;
  13.         }
  14.         fichero.close();
  15.         return;
  16.     }

Así es como guardo la lista de contactos en el txt.