Header file:
ctype.h
Synopsis:
int isgraph (int input)
Description:
Checks whether the given input is a graphic character(glyph associated character).
Return Value:
TRUE (non-zero value) on success
0 on failure.
isgraph function C example
#include<stdio.h>
#include<ctype.h>
int main() {
char c;
printf("Enter your input:");
c = getchar();
if (isgraph(c))
printf("Given input is a graphical character\n");
else
printf("Given input is not a graphical character\n");
printf("Return value from isgraph: %d\n", isgraph(c));
return 0;
}
#include<ctype.h>
int main() {
char c;
printf("Enter your input:");
c = getchar();
if (isgraph(c))
printf("Given input is a graphical character\n");
else
printf("Given input is not a graphical character\n");
printf("Return value from isgraph: %d\n", isgraph(c));
return 0;
}
Output:
jp@jp-VirtualBox:~/cpgms$ ./a.out
Enter your input:q
Given input is a graphical character
Return value from isgraph: 32768
Enter your input:q
Given input is a graphical character
Return value from isgraph: 32768
/* give space as input */
jp@jp-VirtualBox:~/cpgms$ ./a.out
Enter your input:
Given input is not a graphical character
Return value from isgraph: 0
jp@jp-VirtualBox:~/cpgms$ ./a.out
Enter your input:
Given input is not a graphical character
Return value from isgraph: 0
Do you need Finance? Are you looking for Finance? Are you looking for finance to enlarge your business? We help individuals and companies to obtain finance for business expanding and to setup a new business ranging any amount. Get finance at affordable interest rate of 3%, Do you need this finance for business and to clear your bills? Then send us an email now for more information contact us now via (financialserviceoffer876@gmail.com) whats-App +918929509036 Dr James Eric Finance Pvt Ltd Thanks
ReplyDelete