I'm taking an Intro to Programming course, even though I already have some C-style programming experience. One of our homework assignments is to take a full name in the form of a string (the book gives "John Jacob Schmidt" as an example) and output:
First name: John
Middle name: Jacob
Last name: Schmidt
Normally, I'd go find a way to separate the given string by the substring " ", but I want to go more "by the book". In the chapter, we talk about string manipulation, and finding a substring given a location and length.
One more thing: I am not allowed to use anyone else's code without proper citation and my professor's permission.