El iswgraph() es una función integrada en C/C++ que verifica si el carácter ancho dado tiene una representación gráfica o no. Se define dentro del archivo de encabezado cwctype de C++. Por defecto, los siguientes caracteres son gráficos:
- Dígitos (0 a 9)
- Letras mayúsculas (A a Z)
- Letras minúsculas (de la a a la z)
- Caracteres de puntuación (!”#$%&'()*+, -./:;?@[\]^_`{|}~)
Sintaxis :
int iswgraph(ch)
Parámetro : La función acepta un único parámetro obligatorio ch que especifica el carácter ancho el cual tenemos que comprobar si tiene representación gráfica o no.
Valor devuelto : la función devuelve dos valores como se muestra a continuación.
- Si ch tiene un carácter de representación gráfica, se devuelve un valor distinto de cero.
- Si no es un carácter de representación gráfica, se devuelve 0.
Los siguientes programas ilustran la función anterior.
Programa 1 :
// C++ program to illustrate // iswgraph() function #include <cwctype> #include <iostream> using namespace std; int main() { wchar_t ch1 = '?'; wchar_t ch2 = ' '; // Function to check if the character // has a graphical representation or not if (iswgraph(ch1)) wcout << ch1 << " has graphical representation "; else wcout << ch1 << " does not have graphical representation "; wcout << endl; if (iswgraph(ch2)) wcout << ch2 << " has graphical representation "; else wcout << ch2 << " does not have graphical representation "; return 0; }
Producción:
? has graphical representation does not have graphical representation
Programa 2 :
// C++ program to illustrate // iswgraph() function #include <cwctype> #include <iostream> using namespace std; int main() { wchar_t ch1 = ' '; wchar_t ch2 = '3'; // Function to check if the character // has a graphical representation or not if (iswgraph(ch1)) wcout << ch1 << " has graphical representation "; else wcout << ch1 << " does not have graphical representation "; wcout << endl; if (iswgraph(ch2)) wcout << ch2 << " has graphical representation "; else wcout << ch2 << " does not have graphical representation "; return 0; }
Producción:
does not have graphical representation 3 has graphical representation
Publicación traducida automáticamente
Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA