Antonio Julian Arrieta Cuartero respondió:
Lo primero es obtener la fecha del sistema char fechaHoy[80]; time_t rawtime; struct tm * timeinfo; time ( &rawtime ); timeinfo = localtime ( &rawtime ); strftime (fechaHoy,80,"Hoy: %Y%m%d",timeinfo); después obtienes la fecha de ayer char...