The uppercase() method of stream manipulators in C++ is used to set the uppercase format flag for the specified str stream. This flag makes the output operations to use capital letters instead of lowercase letters.
Syntax:
CPP
CPP
ios_base& uppercase (ios_base& str)Parameters: This method accepts str as a parameter which is the stream for which the format flag is affected. Return Value: This method returns the stream str with uppercase format flag set. Example 1:
// C++ code to demonstrate
// the working of uppercase() function
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
// Initializing the int
int n = 20;
// Using uppercase()
cout << "uppercase flag: "
<< showbase << oct
<< uppercase
<< n << endl;
return 0;
}
Output:
Example 2:
uppercase flag: 024
// C++ code to demonstrate
// the working of uppercase() function
#include <iostream>
using namespace std;
int main()
{
// Initializing the int
int n = 20;
// Using uppercase()
cout << "uppercase flag: "
<< showbase << hex
<< uppercase
<< n << endl;
return 0;
}
Output:
Reference: https://cplusplus.com/reference/ios/uppercase/uppercase flag: 0X14