int almacenamiento()
{
char alma;
printf ("nDesea almacenar estos datos en un archivo de texto? (S/N): ");
while ((alma=='s') || (alma=='S'))
{
FILE *fichero;
char nombre_fichero[256];
char texto = main();
fichero
= fopen("cuentas.txt", "wt");
fwrite(&texto
, sizeof(texto
), 1, fichero
);
}