Un saludo.
Código
typedef struct int edad; double peso; char letra; }Estr; typedef struct{ vector <Estr> est; int num; bool verdad[10]; }Estructura; const char NOMBRE[] = "save.dat"; void Save(); void Load(); int main() { return 0; } void Load() { Estructura est; ifstream f; f.open(NOMBRE, ios::in|ios::out|ios::binary); ... while(f.read((char *)&est,sizeof(est))); } void save () { Estructura est; ofstream f; ofstream f(NOMBRE,ios::in|ios::out|ios::binary); f.write((const char *) &s,sizeof(est)); }