An integer type capable of storing any wide character value or the special value WEOF, used in wide-character input/output functions.
1st Parameter
The wide character to be tested, passed as a `wint_t`
Read more about parameters of iswupper in parameters section
The iswupperfunction in C language Checks whether the wide character is uppercase.
The iswupper function tests whether wc is a wide character code representing an uppercase letter. The exact set of characters for which iswupper returns true is locale-dependent.
The iswupperfunction takes 1
parameter:
•
wint_t `wc`: The wide character to be tested, passed as a `wint_t`
Checks if the given wide character `wc` is an uppercase letter in the current locale. Returns a nonzero value if `wc` is an uppercase letter, and `0` otherwise.
The iswupper function return value :
Returns non-zero if the wide character is an uppercase letter, 0 otherwise
Output
This example demonstrates basic usage of iswupper with various wide characters, including non-ASCII letters.