Imprimir la hora del sistema en C++ (3 formas diferentes)
Primer método Imprimiendo la fecha y hora actual usando time() segundo método // CPP program to print current date and time // using time and ctime. #include <stdio.h> #include <stdlib.h> #include <time.h> int main() { // declaring argument of time() time_t my_time = time(NULL); // ctime() used to give the present time printf(«%s», … Continue reading «Imprimir la hora del sistema en C++ (3 formas diferentes)»