La función ispunct() comprueba si un carácter es un carácter de puntuación o no.
El término » puntuación «, tal como lo define esta función, incluye todos los caracteres imprimibles que no son alfanuméricos ni espacios. Por ejemplo, ‘@’, ‘$’, etc.
Esta función se define en el archivo de encabezado ctype.h .
sintaxis:
int ispunct(int ch); ch: character to be checked. Return Value : function return nonzero if character is a punctuation character; otherwise zero is returned.
CPP
// Program to check punctuation #include <stdio.h> #include <ctype.h> int main() { // The punctuations in str are '!' and ',' char str[] = "welcome! to GeeksForGeeks, "; int i = 0, count = 0; while (str[i]) { if (ispunct(str[i])) count++; i++; } printf("Sentence contains %d punctuation" " characters.\n", count); return 0; }
Producción:
Sentence contains 2 punctuation characters.
CPP
// C program to print all Punctuations #include <stdio.h> #include <ctype.h> int main() { int i; printf("All punctuation characters in C" " programming are: \n"); for (i = 0; i <= 255; ++i) if (ispunct(i) != 0) printf("%c ", i); return 0; }
Producción:
All punctuation characters in C programming are: ! " # $ % & ' ( ) * +, - . / : ; ? @ [ \ ] ^ _ ` { | } ~
Este artículo es una contribución de Shivani Ghughtyal . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA