How to use skipws and noskipws (initial whitespace characters) format flags in C++

1 Answer

0 votes
#include <iostream>
#include <sstream> 

using std::cout;
using std::endl;

int main()
{
	char ch1, ch2, ch3;

	std::istringstream iss("  c++");
	iss >> std::skipws >> ch1 >> ch2 >> ch3;
	cout << ch1 << ch2 << ch3 << endl;

	iss.seekg(0);
	iss >> std::noskipws >> ch1 >> ch2 >> ch2;
	cout << ch1 << ch2 << ch3 << endl;

	return 0;
}


/*
run:

c++
 c+

*/

 



answered Apr 8, 2018 by avibootz

Related questions

1 answer 203 views
1 answer 274 views
2 answers 155 views
155 views asked Jul 22, 2020 by avibootz
...