Users Online

· Guests Online: 41

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

C++ Program to Demonstrate noskipws Manipulator

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

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 0.95 seconds
10,819,098 unique visits