std::skipws,std::noskipws (3) Linux Manual Page
std::skipws,std::noskipws – std::skipws,std::noskipws Synopsis Defined in header <ios> std::ios_base& skipws( std::ios_base& str ); (1) std::ios_base& noskipws( std::ios_base& str ); (2) Enables or disables skipping of leading whitespace by the formatted input functions (enabled by default). Has no effect on output. 1) enables the skipws flag in the stream str as if by calling str.setf(std::ios_base::skipws) 2)…
