skipws function — Manipulator to skip whitespace before reading
ios_base& skipws(ios_base& stream)
The skipws
function is a
manipulator that sets the skipws
flag, which tells an input stream to skip whitespace before reading
most fields. Specifically, the function calls stream.setf(ios_base::skipws)
and returns
stream
.