Lecture 1
Rules
Assignments
- Makefile requirements
- You must describe how to compile your code in the
README.md of your submission - You must use the original
g++ version that came pre-installed with the virtual machine. - You must include the arguments
-g -Wall -std=c++11 -DLOCALHOST=\"localhost\" in your Makefile.- According to this Piazza post you can use
std=c++17 if you specify so explicitly in your Makefile
- The
-DLOCALHOST is only required for a networking-related assignment. - You must eliminate all compile-time warning messages.
- Do not hardcode filepaths in your program, or assume that they are short in length.
- Use the
FILENAME_MAX macro constant to determine the length of the array
You are allowed to submit 3
modifications to your assignment but you must
do so within 24 hours of the submission deadline. You will not incur a penalty.
So, sending a "modification request" will not change the timestamp of the graded
submission.
Assignment 1
Lab 1
Resources