c 判断字符是否为字母 (iswalpha example)

 

#include <stdio.h>
#include <wctype.h>
int main ()
{
    int i=0;
    wchar_t str[] = L"C++";
    while (str[i])
    {
        if (iswalpha(str[i])){
            printf("character %lc is alphabetic\n",str[i]);
        }
        else{
            printf("character %lc is not alphabetic\n",str[i]);
        }
        i++;
    }
    return 0;
}

输出

character C is alphabetic
character + is not alphabetic
character + is not alphabetic

 

posted @ 2019-05-20 16:10  anobscureretreat  阅读(480)  评论(0编辑  收藏  举报