The iswlower() function is defined in the header file <cwctype.h>.
Prototype:
int iswlower(wchar_t rs);
Parameter:
wchar_t rs – Checks the given character is in lower case or not.
Return type:
The function returns two values:
- Zero: if rs is non - lowercase character.
- Non Zero: if rs is lowercase character.
Use of function
The iswlower() is built- in function in C++, which is used to check the given character, rs is in lower case or not .
Program 1:
Output
Program 2:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer