Header for Assignments

Use the header format below inside a comment at the top of each of your files for homework submissions in this course
/* Name: (Your Name)
Date: (The Date)
Section: (Your section)
Assignment: (Assignment#)
Due Date: (Due Date)
About this project: (write a small blurb about what this project's goals are/what tasks it accomplishes)
Assumptions: (write any assumptions made here (ex: assumes correct user input))

All work below was performed by (Your Name) */

RULES FOR ALL HOMEWORK ASSIGNMENTS IN THIS COURSE

  • NO global variables (this means no variables declared outside of any function, including main() )
  • NO system calls
  • NO goto statements
  • Follow the rules of each assignment as closely as possible