wctype
#include <wctype.h>
int main() {
wint_t wc = L'A';
if (iswalpha(wc)) {
printf("'%lc' is an alphabetical character.\n", wc);
}
return 0;
}#include <wctype.h>
int main() {
wint_t wc = L'a';
wc = towupper(wc);
printf("'%lc' converted to uppercase is '%lc'.\n", wc);
return 0;
}