Cプログラミング
 Computer >> コンピューター >  >> プログラミング >> Cプログラミング

Cのispunct()


関数ispunct()は、通過する文字が句読点であるかどうかを確認するために使用されます。句読点でない場合はゼロを返し、そうでない場合はゼロ以外の値を返します。

C言語でのispunct()の構文は次のとおりです。

int ispunct(int character);

これがC言語のispunct()の例です

#include <stdio.h>
#include<ctype.h>
int main() {
   int a = '!';
   int b = 'a';
   if(ispunct(a))
   printf("The character is a punctuation.");
   else
   printf("\nThe character is not a punctuation.");
   if(ispunct(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.

  1. HTML文字セット

    さまざまな文字セットには、ASCII、ANSI、ISO-8859-1、UTF-8などが含まれます。ISO-8859-1は256の異なる文字コードをサポートします。 ASCIIは128の異なる英数字を定義しました。 HTMLのcharset属性は、文字エンコードを指定するためにとともに使用されます。 以下は構文です- <meta charset="char_set"> 上記のchar_setは、HTMLドキュメントの文字エンコードを指定するための文字セットです。 HTML文字エンコードを実装する例を見てみましょう- 例 <!DOCTYPE html&

  2. C言語での文字操作の説明

    文字には、(A-Z(または)a- z)、数字(0-9)、空白、またはCプログラミング言語の特殊記号を使用できます。 宣言 以下は、Cプログラミングでの文字演算の宣言です- char a= ‘A’; using a character constant. 文字入出力機能 文字入出力機能を以下に説明します- 例-chara; scanf("%c", &a); printf ("%c", &a); a = getchar ( ); putchar (a); a = getch ( ); putch (a);