Exercises
Day 14 exercises
Fundamentals
- Turn on your cameras and mics if possible
- Introduce yourselves
Your assigned partner(s) should be in your breakout room
We will likely keep these group stable from here on out
- Choose someone to screen share
New: Git
Use git to retrieve the source code for this course:
git clone git@gitlab.cs.washington.edu:mh75/cse374-materials.git
You should have a new file called cse374-materials What does it contain? Have you received a notification of your new team project space on Git? (If not, please email Dr. Hazen.)
New: HW4
In homework 4 you will be reading string from a file. Get started by creating your own C file.
- Create a new file called
hw4.c
- Add an initial comment with your name, course, and data
- What libraries do you need to include? Add code to include them at the top of the file.
- Add a
main function.
What arguments and return types does it need?
- Add a print statement:
printf("Testing\n");
- This is a good time to start testing your code.
- Compile the code
- Does it run? Does it print the testing statement?
- Now start adding code to process the arguments and return a successful exit.