First page Back Continue Last page Graphics
Line Oriented String Input
getline – cin.getline(array name, limit)
optional third argument (later)
gets all characters up to new line.
discards new line character
adds a null terminator.
get – cin.get(array name, limit)
similar but doesn't discard newline.
white space
Practice: instr2.cpp and instr3.cpp