Avoid puts() in starter code
We didn't use puts()
in CS 3 so many students didn't realize it was just a special case of printf()
. Alternatives include using printf()
everywhere (with %%
, ew), using printf("%s", str)
, or just improving the comments (but doesn't appear that students actually read these