C++ 本地化库 - isprint



描述

它检查字符是否可打印,可打印字符是指在显示器上占据打印位置的字符。

声明

以下是 std::isprint 的声明。

C++98

int isprint ( int c );

C++11

int isprint ( int c );

参数

c − 要检查的字符,转换为 int 类型,或 EOF。

返回值

它返回一个非零值。

异常

无异常保证 − 此函数从不抛出异常。

示例

以下示例演示了 std::isprint 的用法。

#include <stdio.h>
#include <ctype.h>
int main () {
   int i=0;
   char str[]="Tutorialspoint.com \n sairamkrishna Mammahe \n";
   while (isprint(str[i])) {
      putchar (str[i]);
      i++;
   }
   return 0;
}

示例输出应如下所示:

Tutorialspoint.com  
locale.htm
广告