friend   Clock   operator   ++(Clock&,int); 

friend   Clock   operator   ++(Clock&   c,int) 
 
  Clock   temp(c); 
        ++c; 
        return   temp; 
}