Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

iswlower() ฟังก์ชั่นใน C/C++


ฟังก์ชัน iswlower() เป็นฟังก์ชันในตัวใน C/C++ ตรวจสอบว่าอักขระกว้างเป็นตัวพิมพ์เล็กหรือไม่ มีการประกาศในไฟล์ส่วนหัว "cwctype" ในภาษา C ++ ในขณะที่ "ctype.h" ในภาษา C ใช้อักขระตัวเดียวซึ่งเรียกว่าอักขระแบบกว้าง มันจะคืนค่าศูนย์ (0) หากอักขระไม่ใช่อักขระตัวพิมพ์เล็ก มันจะคืนค่าที่ไม่ใช่ศูนย์ หากอักขระเป็นตัวพิมพ์เล็ก

นี่คือไวยากรณ์ของ iswlower() ในภาษา C/C++

int iswlower(ch);

นี่คือตัวอย่าง iswlower() ในภาษา C++

ตัวอย่าง

#include <cwctype>
#include <iostream>
using namespace std;
int main() {
   wchar_t c = 'S';
   if (iswlower(c))
   wcout << c << ", The character is a lowercase character ";
   else
   wcout << c << ", The character is not a lowercase character ";
   wcout << endl;
   return 0;
}

ผลลัพธ์

S , The character is not a lowercase character