Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C/C++의 iswpunct() 함수

<시간/>

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.

위의 프로그램에서 두 개의 와이드 문자는 및 b로 선언됩니다. 전달된 문자가 구두점인지 아닌지 확인합니다.

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.");