📅  最后修改于: 2020-09-25 07:07:03             🧑  作者: Mango
int isspace(int ch);
isspace()
函数检查ch
是否为按当前C语言环境分类的空白字符 。默认情况下,以下字符是空格字符:
如果ch
的值不能表示为无符号字符或不等于EOF,则isspace()
的行为是不确定的。
它在
ch
:要检查的字符 。
如果ch
是空格字符 ,则isspace()
函数返回非零值,否则返回零。
#include
#include
#include
using namespace std;
int main()
{
char str[] = "\n\n\tC++ \n\n";
cout << "Before removing whitespace characters" << endl;
cout << str << endl << endl;
cout << "After removing whitespace characters" << endl;
for (int i=0; i
运行该程序时,输出为:
Before removing whitespace characters
C++
After removing whitespace characters
C++