The nouppercase() method of stream manipulators in C++ is used to clear the showbase format flag for the specified str stream. This flag makes the output operations not to use capital letters instead of lowercase letters.
Syntax:
ios_base& nouppercase (ios_base& str)
Parameters: This method accepts str as a parameter which is the stream for which the format flag is to be cleared.
Return Value: This method returns the stream str with nouppercase format flag set.
Example 1:
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
char a, b, c;
istringstream iss( "gfg" );
iss >> a >> b >> c;
cout << "nouppercase flag: "
<< nouppercase
<< a << endl
<< b << endl
<< c << endl;
return 0;
}
|
Output:
nouppercase flag: g
f
g
Example 2:
#include <iostream>
using namespace std;
int main()
{
int n = 20;
cout << "nouppercase flag: "
<< showbase << hex
<< nouppercase
<< n << endl;
return 0;
}
|
Output:
nouppercase flag: 0x14
Reference: http://www.cplusplus.com/reference/ios/nouppercase/