Users Online
· Guests Online: 29
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
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.
-
/* -
* C++ Program to demonstrate noskipws manipulator -
*/ -
#include <iostream> -
#include <sstream> -
#include <string> -
using namespace std;
-
-
int main()
-
{ -
char first, middle, last;
-
-
istringstream("G B S") >> first >> middle >> last;
-
cout << "Default behavior: First Name = " << first << ", Middle Name = " << middle << ", Last Name = " << last << '\n';
-
istringstream("G B S") >> noskipws >> first >> middle >> last;
-
cout << "noskipws behavior: First Name = " << first << ", Middle Name = " << middle << ", Last Name = " << last << '\n';
-
}
$ 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.
