Handing in Homework
Using hwsubmit
You should hand in your programming assignments
using the command hwsubmit:
- Create a directory with a suggestive name (e.g., "hw1"), and put
all relevant files in that directory.
- Change to the directory directly above that one.
- Type hwsubmit cmsc15200 YOUR_DIRECTORY_NAME
If all goes well, you will receive a notice that the assignment
has been submitted.
README files
If there's anything we need to know, create a README file
in your directory with the relevant information. This is where you tell
us things like:
- Please compile my code with optimization turned off.
- My program's output is in Sanskrit.
- I got help from (insert name here), so my code might look a lot
like hers/his.
Headers for *.c file
You should include a header in comments at the top of every *.c file
that you sumbit, with the following information:
/* Your Name
 * username (used to log onto cs linux machines)
 * Section # (1 or 2)
 * Homework #, Problem #
 */
#include < stdio.h>
...
Course home page