UMBC CMSC104 CSEE

Extra Credit Project

DUE: 15 May

You must do projects 1 through 5 to get credit for work on the extra credit project! 4 May

Extra Credit Project is worth 100 points and due at 11:59 pm, May 15:

Requirements

Create a file named projEC.c that will:

Grading

This is worth 100 points.

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 |