Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/05/2005, 12:42
Avatar de Eternal Idol
Eternal Idol
 
Fecha de Ingreso: mayo-2004
Ubicación: Lucentum
Mensajes: 6.192
Antigüedad: 20 años, 6 meses
Puntos: 74
No, si usas streams de C++ no tenes que hacer mas que empujarlos, seria algo asi si ya escribiste en el archivo fichero.txt la hora:

Código:
#include <fstream>
#include <time.h>

using std::ifstream;
using std::ofstream;

void main()
{
  time_t hora;
  ifstream fEnt;
  fEnt.clear();
  fEnt.open("fichero.txt");
  fEnt >> hora;
  struct tm *outtime;
  outtime = localtime(&hora);
  printf("%.19s\n", asctime(outtime));
}
El output es de este tipo: Wed May 11 20:47:11
__________________
¡Peron cumple, Evita dignifica! VIVA PERON CARAJO