isspace,计算机函数,主要用于检查参数c是否为空白字符。
简介
函数说明
检查参数c是否为空白字符,也就是判断是否为空格(' ')、水平定位字符
返回值
范例
将字符串str中内含的空格字符找出,并显示空格字符的ASCII码
执行
str[4] is a white-space character:32
str[7] is a white-space character:32
str[10] is a white-space character:9 /* */
str[16] is a white-space character:10 /*
*/