for ( i = 0, sum = 0 ; i < N ; i ++ )
   {
   // ======= Chapter 3 ================================
   // = Calculate the sum of all things ======================
   sum = sum + array[i] ;
   // ===============================================
   }