    ,    *2 , ,    
,     .   , 
          ! 
    ? ,         
          "".  
, C++     .  
       inline (), 
       .   ,    12.9. 

     12.9.  INLINE.CPP (  ) 

    1:   #include <iostream.h> 
    2:
    3:  inline int max(int a,   int b) 
    4:         { 
    5:            if (a >= b) 
    6:                 return a; 
    7:             else 
    8:                return b; 
    9:          } 
    10: 
    11:	main() 
    12:	{ 
    13:	  int , , z; 
    14: 
    15:	  cout  "X? "; 
    16:	  cin  x; 
    17:	  cout  "Y? "; 
    18:	  cin  y;                                            
    19:	  z = max(x, ); 
    20:	  cout  "max(a, b) == "  z  '\r\'; 
    21:	  return 0; 
    22:	}

         ,     
 inline,     3.     ( 
4-9).        ,     
,     .   
, " ,     3-9,   
      ,    
.       , 
    ,         
     . 
          ,    
. ,   19  ()     
        z. ,  
  Borland C++    m()   19. 
        , 
  19,        : 

    if (x >= ) 
      z = ; 
   else 
      z = ; 

    ,    , . ,  max() 
    ,     . 

     

        .    
 ,     , ,  , 
     ,    . 
,     ,   ,     
  .   ,  ,  ,  
       ,    
  .      Turbo Debugger 
        , 
   .    C++   
   ,      . 


     12.   C++         289 
    10  Borland C++4.5 
