UMBC CMSC104 CSEE

Project 5

DUE: 14 May

Project 6 is worth 100 points and due at 11:59 May 14:

Requirements

Create a file named 6789prj5.c that will:

Example of 2-dimensional Array Usage

/*******************************************************************
 * Note:  This program was modified to work with the UMBC compiler *
 *        This is Figure 6.21 on Page 227 of C -- How to Program,  *
 *           Third Edition, Deitel & Deitel                        *
 *  ======== Gary Burt ==========================================  * 
 *******************************************************************/

/* Fig. 6.21: fig06_21.c
   Initializing multidimensional arrays */
#include 

void printArray( int a[][ 3 ] ); /* function prototype */

/* function main begins program execution */
int main( void )
{
   /* initialize array1, array2, array3 */
   int array1[ 2 ][ 3 ] = { { 1, 2, 3 }, { 4, 5, 6 } };
   int array2[ 2 ][ 3 ] = { { 1, 2, 3 }, { 4, 5 } };
   int array3[ 2 ][ 3 ] = { { 1, 2 }, { 4 } };

   printf( "Values in array1 by row are:\n" );
   printArray( array1 );

   printf( "Values in array2 by row are:\n" );
   printArray( array2 );

   printf( "Values in array3 by row are:\n" );
   printArray( array3 );

   return 0; /* indicates successful termination */

} /* end main */

/* function to output array with two rows and three columns */
void printArray( int a[][ 3 ] )
{
   int i; /* row counter */
   int j; /* column counter */

   /* loop through rows */
   for ( i = 0; i <= 1; i++ ) {

      /* output column values */
      for ( j = 0; j <= 2; j++ ) {
         printf( "%d ", a[ i ][ j ] );
      } /* end inner for */

      printf( "\n" ); /* start new line of output */
   } /* end outer for */

} /* end function printArray */


/**************************************************************************
 * (C) Copyright 1992-2004 by Deitel & Associates, Inc. and               *
 * Pearson Education, Inc. All Rights Reserved.                           *
 *                                                                        *
 * DISCLAIMER: The authors and publisher of this book have used their     *
 * best efforts in preparing the book. These efforts include the          *
 * development, research, and testing of the theories and programs        *
 * to determine their effectiveness. The authors and publisher make       *
 * no warranty of any kind, expressed or implied, with regard to these    *
 * programs or to the documentation contained in these books. The authors *
 * and publisher shall not be liable in any event for incidental or       *
 * consequential damages in connection with, or arising out of, the       *
 * furnishing, performance, or use of these programs.                     *
 *************************************************************************/

Program Header Comment Block

Use the following comment block at the beginning of your source code:
/*****************************************************/
/* Program Header Block                              */
/* Filename:       6789prj2.c                        */
/* Name:           Ima Student                       */
/* SSAN:           6789                              */
/* Date:           6 April 2004                      */
/* Course/section: CMSC-104/0101                     */
/* Description:                                      */
/*     Analysis:                                     */
/*         Input:                                    */
/*         Output:                                   */
/*         Constraints:                              */
/*         Formulas:                                 */
/*         Assumptions:                              */
/*     Design:                                       */
/*         (Your psuedocode goes here.)              */
/*                                                   */
/* Notes:          (As needed.)                      */
/*****************************************************/

Function Header Comment Block (One for each function)

/*********************************************************** 
 * Function name:    function_name                         *
 * Description:      (Your function psuedocode goes here)  *
 * Input Parameters: Name and data type of each parameter. *
 * Return Value:     Data type and description of what     *
 *                   the return value is.                  * 
 ***********************************************************/
  

UMBC | CSEE |