        100    
,         . 
       C++ ,      
  ,  .   const 
   : 

    const int MAX = 100; 

     for   ,       
 . 

               . C++ 
,      int,       
      . 

      Turbo Debugger    .   
  ,    #define. 

         .  ,    
        . 
       , 
   .  ,     
     .    
   ,     . 
         ,     
,         
. ,     ,   
  #define. 

      

          ,    C++, 
 ,      .    
 ,     ,   
    .      
   !       
  .    ,  ,  
       . 
      ,      
   ,       
.     for: 

    for (int i = 0;   i < MAX;   i++ ) { 
       AnyFunction(); 
    } 

     MAX  ,   Any Function()   
         . 
, AnyFunction()   : 

    void AnyFunction(void) { 
       cout  AnyValue  '\n';
       AnyValue++; 
    }

     , , ,      : 
  AnyFunctionO    for   : 

    for (int i = 0; i < MAX; i++) 
          cout  AnyValue  '\n'; 
          AnyValue++; 
    }

           .  
   ,    for: 

    cout  AnyValue  '\n'; 
    AnyValue++; 
    cout  AnyValue  '\n'; 
    AnyValue++; 
    cout  AnyValue  '\n'; 
    AnyValue++; 


    288	 III.   ANSI C++ 
