#include
int toupper( int char );
Returns upper case type of the character
===== cpp Sourcecode Example =====
#include /* including standard library */
#include
using namespace std;
int main ( void )
{
/* convert the Chars "i" and "t" uppercase */
cout << static_cast(toupper('i')) << " whant " << static_cast(toupper('t')) << "his in uppercase" << endl;
return 0;
}
==== output ====
output:
I whant This in uppercase