#include<stdio.h>
#include<ctype.h>
#define SIZE 10
char *teststr(char *str,int num){
int i;
char ch;
for(i=0;i<num;i++){
ch=getchar();
if(ch==EOF||isspace(ch)){//issapce:函数说明:检查参数c是否为空格字符,也就是判断是否为空格(' ')、定位字符(' \t ')、CR(' \r ')、换行(' \n ')、垂直定位字符(' \v ')或翻页(' \f ')的情况。
break;
}else{
str[i]=ch;
}
}
if(ch==EOF){
return NULL;
}else{
str[i]='\0';
return str;
}
}
int main(void){
char str[SIZE];
char *ch;
ch = teststr(str,SIZE-1);
if(ch==NULL){
puts("fails input");
}else{
puts(ch);
}
return 0;
}
网友评论