C++ Program to Demonstrate noskipws Manipulator
Posted by Superadmin on August 10 2022 08:22:11

C++ Program to Demonstrate noskipws Manipulator

 

 

s are entered into operands via input stream or characters are output into output streams.

 

Here is the source code of the C++ program which demonstrates the noskipws manipulator. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.

  1. /*
  2.  * C++ Program to demonstrate noskipws manipulator
  3.  */
  4. #include <iostream>
  5. #include <sstream>
  6. #include <string>
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11.     char first, middle, last;
  12.  
  13.     istringstream("G B S") >> first >> middle >> last;
  14.     cout << "Default behavior: First Name = " << first << ", Middle Name = " << middle << ", Last Name = " << last << '\n';
  15.     istringstream("G B S") >> noskipws >> first >> middle >> last;
  16.     cout << "noskipws behavior: First Name = " << first << ", Middle Name = " << middle << ", Last Name = " << last << '\n';
  17. }

 

$ gcc test.cpp
$ a.out
Default behavior: First Name = G, Middle Name = B, Last Name = S
noskipws behavior: First Name = G, Middle Name =  , Last Name = B