iswpunct() 함수는 전달된 와이드 문자가 구두점인지 확인하는 데 사용됩니다. 구두점이 아닌 경우 0이 반환되고, 그렇지 않으면 0이 아닌 값이 반환됩니다. 이는 "cwctype" 헤더 파일에 선언되어 있습니다.
다음은 iswpunct()의 구문입니다.
int iswpunct(wint_t character);
iswpunct()의 예입니다.
#include<cwctype> #include<stdio.h> using namespace std; int main() { wint_t a = '!'; wint_t b = 'a'; if(iswpunct(a)) printf("The character is a punctuation."); else printf("\nThe character is not a punctuation."); if(iswpunct(b)) printf("\nThe character is a punctuation."); else printf("\nThe character is not a punctuation."); return 0; }
The character is a punctuation. The character is not a punctuation.
위 프로그램에서는 두 개의 와이드 문자가 a와 b로 선언됩니다. 전달된 문자가 구두점인지 확인합니다.
rreee위 내용은 C/C++에서 iswpunct() 함수의 기능은 와이드 문자가 구두점인지 여부를 확인하는 것입니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!