UMBC CMSC104 CSEE

Extra Credit Project

You can not do the extra credit project unless you do the other five projects.

Due

This project is worth 200 points and due at 11:59 pm Dec 16.

Requirements

Create a file named jdoe2pEC.c that will:

Program Header Comment Block

Use the following comment block at the beginning of your source code:
/***********************************************************
 * Filename:       projEC.c                                *
 * Name:           Ima Student                             *
 * SSAN:           6789                                    * 
 * Date:           3 October 2000                          *
 * Course:         CMSC-104                                * 
 * Description:    (Your psuedocode for main() goes here)  *
 *     Analysis:                                           *
 *                 Input:                                  *
 *                 Output:                                 *
 *                 Formulas:                               *
 *                 Constraints:                            *
 *                 Assumptions:                            *
 *     Design:     (Psuedocode is here)                    *
 * Notes:          (As needed, such has how to compile)    *
 ***********************************************************/
  

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 CMSC104 CSEE | CMSC104 | Lectures