📜  C / C++中的iswcntrl()函数

📅  最后修改于: 2021-05-25 20:07:39             🧑  作者: Mango

iswcntrl()是C++ STL中的内置函数,它检查给定的宽字符是否为控制字符。它在C / C++的cwctype头文件中定义。

句法:

int iswcntrl(wint_t ch)

参数:该函数接受单个强制性参数ch ,该参数指定宽字符,我们必须检查该宽字符是否为控制字符。

返回值:该函数返回两个值,如下所示:

  • 如果ch是控制字符,则返回非零值。
  • 如果不是,则返回0。

下面的程序说明了上述函数。
程序1:

// C++ program to illustrate the
// iswcntrl() function
#include 
using namespace std;
  
int main()
{
    wchar_t ch1 = L'\n';
  
    // checks if it is a control character
    if (iswcntrl(ch1))
        wcout << "It is a control Character";
  
    else
        wcout << "It is not a control Character";
    return 0;
}
输出:
It is a control Character

程式2:

// C++ program to illustrate the
// iswcntrl() function
#include 
using namespace std;
  
int main()
{
    wchar_t ch1 = L'@';
  
    // checks if it is a control character
    if (iswcntrl(ch1))
        wcout << "It is a control Character";
  
    else
        wcout << "It is not a control Character";
  
    return 0;
}
输出:
It is not a control Character
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”