towupper()是C /C++中的內置函數,它將給定的寬字符轉換為大寫。它在C++的cwctype頭文件中定義。
用法:
wint_t towupper( wint_t ch )
參數:該函數接受單個強製性參數ch,該參數指定了我們必須轉換為大寫形式的寬字符。
返回值:該函數返回兩個值,如下所示。
- 如果ch具有大寫版本,則將其轉換為大寫版本。
- 如果不是,則不進行任何修改。
以下示例程序旨在說明上述函數。
程序1:
// Program to illustrate
// towupper() function
#include <cwchar>
#include <cwctype>
#include <iostream>
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 <cwchar>
#include <cwctype>
#include <iostream>
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++ log()用法及代碼示例
- C++ div()用法及代碼示例
- C++ fma()用法及代碼示例
- C++ real()用法及代碼示例
- C++ imag()用法及代碼示例
- C++ map key_comp()用法及代碼示例
- C++ valarray tan()用法及代碼示例
- C++ regex_iterator()用法及代碼示例
- C++ valarray pow()用法及代碼示例
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 towupper() function in C/C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。