COL351: Submission instructions for Programming Assignment 1


HW1 submissions are to be made as follows:
- Create a zip file with all your source code and a "Makefile" file.
- The make file should compile your source code (in case it needs any compilation, otherwise it may be empty).
- Our autograder will simply unzip your zip file and run the command "make”.
- This will be followed by running "evenpath" for different test cases (done by copying and deleting different input.txt files into your directory) and checking the "output.txt" file.
- Name your zip file in the following format: <entry no>.zip. (Example: 2014CS10201.zip)
- Mail your zip file with the subject: "COL351: HW1" to piyushgupta.pp@gmail.com

A few Examples of Makefile and evenpath:

For C:
——Makefile——
all: <your program name>.c
      gcc -o evenpath <yourprogram>.c
————————
For C++:
——Makefile——
all: <your program name>.cpp
      g++ -o evenpath <yourprogram>.cpp
————————
For Java:
——Makefile——
all: <your program name>.java
      javac <your program name>.java
————————

——evenpath (This is a shell script)——
java <your program name>
————————