2.2.3.15.24 string::MakeUpper

Description

Convert this string object to an uppercase string.

Syntax

void MakeUpper( )

Parameters

Return

Examples

EX1

void string_MakeUpper_ex1()
{
    string str("abcd");
    str.MakeUpper();
    //str should be "ABCD"
    printf("the string converted is \"%s\"\n", str);
}

Remark

See Also

string::MakeLower

Header to Include

origin.h