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