    ,        .    
       ,   
  TTime today: 

   TTime &newTimeR(void) 
   {
      return today; 
   }

    -         TTime   
  newTimeR():

   TTime &tr = newTimeRO;

     tr    today      : 

     newTimeP().Display(); 

         ,  ,  newTimeR(),  
            
TTime,     . 

       

     ,        ,   
    . ,    
  10   TTime: 

    TTime tenTimes[10]; 

        ,   : 
 ,    ,     
.     ,  tenTimes, C++ 
        .   
 tenTimes, C++  10     TTime,  
   tenTimes[0]  tenTimes[9]    . 
     13.22      
.     TTime,    TIME6.H. 
    DOS  bcc obarray1 time6  
      OBARRAY1.EXE   
 .         Project  
 OBARRAY1.IDE   <Ctrl+F9>    . 

     13.22.  OBARRAY1.CPP (    )

    1:	#include <iostream.h> 
    2:	#include <stdiovh> 
    3:	#include "times. h"
    4: 
    5:           main()
    6:	{
    7:	  TTime tarray[6] ;
    8:
    9:	for (int i=0;   i < 6; i++ )
    10:	  tarray[i].Display(): 
    11:	return 0; 
    12:	} 

      7   tarray    TTime.   
 OBARRAY1,       ,  C++ 
       . 
(     Turbo Debugger   <F7>  
     ,   TTime  
  .) 
      ,  C++   ,    
    .     
   ,      13.23. 
 ,       OBARRAY1. 

     13.23.  OBARRAY2.CPP (    ) 

    1:	#include <iostream.h> 
    2.	#include <stdio.h> 
    3:	#include "timee.n" 
    4: 
    5:	main()                                                                
    6:	{                                         .                       
    7:	TTime tarray[6] = {   TTime(), TTime(8), 


    332      III.   ANSI C++ 
