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

📅  最后修改于: 2021-05-25 23:11:09             🧑  作者: Mango

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

语法

int isblank(ch)

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

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

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

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

程序1

// Program to illustrate
// isblank() function
#include 
#include 
using namespace std;
  
int main()
{
  
    wchar_t ch1 = ' ';
    wchar_t ch2 = 'i';
  
    // check if character is blank or not 
    if(isblank(ch1))
     cout << "ch1 is blank \n"; 
    else 
      cout << "ch1 is not blank\n";
      
    // check if character is blank or not 
     if(isblank(ch2))
     cout << "ch2 is blank \n"; 
    else 
     cout << "ch2 is not blank\n";
  
    return 0;
}
输出:
ch1 is blank 
ch2 is not blank

程序2

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