Definir una clase que permita representar el tiempo, es decir horas, minutos y segundos. Desarrollar que permitan inicializar el tiempo en 0 horas, 0 minutos y 0 segundos; mostrar las horas, minutos y segundos en el siguiente formato hh:mm:ss; incrementar el tiempo en un segundo.
#include<iostream>
#include<cstdlib>
#include<windows.h>
using namespace std;
const int h=24;
const int m=60;
const int s=60;
class reloj
{
private:
int hora;
int minutos;
int segundos;
int formato;
public:
reloj(){};
...