Homework Submission
Contents
Homework Submission#
If your turn-in file names are different from what we specify here, your turn-in will not be graded.
Deliverables#
Linked List – The filename has to be
linked_list.c
, and it should contain the linked list code in Questions.Array Sum – The filename has to be
array_sum.c
, and it should contain the array_sum code in Questions.
Please upload a YOUR_PENNID.tgz
that contains
linked_list.c
and array_sum.c
to the diagnostic assessment assignment in canvas.
If your Penn ID is dopark
, then it should be dopark.tgz
.
For those who do are in the waitlist, please send YOUR_PENNID.tgz
to
dopark@seas.upenn.edu with the email titled with “ESE5320 Diagnostic”.
TA will send the reply once the email is received.
Quick linux commands for tar files
# Compress
tar -cvzf <file_name.tgz> directory_to_compress/
# Decompress
tar -xvzf <file_name.tgz>