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:
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:
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
int n = 20;
cout << "uppercase flag: "
<< showbase << oct
<< uppercase
<< n << endl;
return 0;
}
|
Output:
uppercase flag: 024
Example 2:
#include <iostream>
using namespace std;
int main()
{
int n = 20;
cout << "uppercase flag: "
<< showbase << hex
<< uppercase
<< n << endl;
return 0;
}
|
Output:
uppercase flag: 0X14
Reference: http://www.cplusplus.com/reference/ios/uppercase/
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Aug, 2019
Like Article
Save Article