How to check if a given wide character is an alphabetic character in C

1 Answer

0 votes
#include <stdio.h>
#include <wchar.h>
#include <wctype.h>
#include <locale.h>

int main(void)
{
    setlocale(LC_ALL, "en_US.utf8");

    wchar_t wch = L'\u0a98'; 

    printf("%d", iswalpha(wch));
}




/*
run:

1

*/

 



answered Feb 11, 2023 by avibootz
...