obtener fecha y hora en c++
AUTOR PREGUNTA #1
-
1 personas más tuvieron esta duda Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
#include
#include
using namespace std;
int main( )
{
char dateStr [9];
char timeStr [9];
_strdate(dateStr);
cout<< "La fecha es:" << dateStr ;
_strtime( timeStr );
cout << "\nLa hora es: "<< timeStr;