towupper()是C / C++中的内置函数,可将给定的宽字符转换为大写。它在C++的cwctype头文件中定义。
语法:
wint_t towupper( wint_t ch )
参数:该函数接受一个强制性参数ch ,该参数指定我们必须转换为大写字母的宽字符。
返回值:该函数返回两个值,如下所示。
- 如果ch具有大写版本,则将其转换为大写版本。
- 如果不是,则不进行任何修改。
下面的程序说明了上述函数。
程序1 :
// Program to illustrate
// towupper() function
#include
#include
#include
using namespace std;
int main()
{
wchar_t str[] = L"GeeksforGeeks";
wcout << L"The uppercase version of \""
<< str << L"\" is ";
for (int i = 0; i < wcslen(str); i++)
// Function to convert the character
// into the uppercase version, if exists
putwchar(towupper(str[i]));
return 0;
}
输出:
The uppercase version of "GeeksforGeeks" is GEEKSFORGEEKS
程序2 :
// Program to illustrate
// towupper() function
#include
#include
#include
using namespace std;
int main()
{
wchar_t str[] = L"hello Ishwar 123!@#";
wcout << L"The uppercase version of \""
<< str << L"\" is ";
for (int i = 0; i < wcslen(str); i++)
// Function to convert the character
// into the uppercase version, if exists
putwchar(towupper(str[i]));
return 0;
}
输出:
The uppercase version of "hello Ishwar 123!@#" is HELLO ISHWAR 123!@#
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。