Nome da função : isgraph
Arquivo de cabeçalho : <ctype.h>
Protótipo de função : int isgraph(int ch);
Função : Determine se o caractere é imprimível, exceto espaços
Parâmetros : caractere int ch a ser verificado
Valor de retorno : se ch não for um caractere imprimível diferente de espaços, retorne 0; se ch for um caractere imprimível diferente de espaços, retorne diferente de 0;
Exemplo de programa : Determine se os caracteres inseridos são caracteres imprimíveis, exceto espaços.
#include<ctype.h>#include<stdio.h>intmain(){charch;printf(inputacharacter:);scanf(%c,&ch);if(isgraph(ch)){printf(%cisgraph.,ch) ;}else{printf(%cisnotgraph.,ch);}putchar('n');return0;}
Resultados em execução:
inputacharacter:ggisgraph.