- Review syntax for accessing individual letters in a string.
- Review what's in s[0], s[-1], s[strlen(s)], s[strlen(s) - 1], and s[strlen(s) + 1]
- Quiz: what is the difference between s[i + 1] and s[i] + 1 ?
- Coding!
- What to do if you get stuck?
- Ask your peers questions.
- Ask Google when your peers don't know.
- Ask an instructor if those don't work.
- Don't stay stuck for more than 10 minutes without asking for help.
- Validate your programs with check50
|
|