isgraph function

Share it Please
this function is used to determine weather given character is graph character or not.Let us see example program for it.

Example:

#include<stdio.h>
#include<conio.h>
#include<ctype.h>
main()
{
        char ch;
        clrscr();
        printf("Enter any character: ");
        scanf("%c",&ch);
        if(isgraph(ch))
        {
                printf("\nThis character is graph character");
        }
        else
        {
                printf("\nThis character is not graph character");
        }
        getch();

}