📅  最后修改于: 2020-09-25 07:05:42             🧑  作者: Mango
int isprint(int ch);
isprint()
函数根据当前C语言环境检查ch
是否可打印。默认情况下,以下字符是可打印的:
如果ch
的值不能表示为无符号字符或不等于EOF,则isprint()
的行为是不确定的。
它在
ch
:要检查的字符 。
如果ch
是可打印的,则isprint()
函数返回非零值,否则返回零。
#include
#include
#include
using namespace std;
int main()
{
char str[] = "Hello\tall\nhow are you";
for (int i=0; i
运行该程序时,输出为:
Hello all how are you