Header file:
ctype.h
Synopsis:
int isxdigit (int input)
Description:
Checks whether the given input is a hexadecimal digit or not.
Return value:
TRUE(non-zero value) on success
0 on failure.
isxdigit function C example:
#include<stdio.h>
#include<ctype.h>
int main() {
char c;
printf("Enter your input:");
c = getchar();
/* 0-9 & A-F -hexadecimal digits */
if (isxdigit(c))
printf("The given input is a hexadecimal digit\n");
else
printf("not an hexadecimal digit\n");
printf("Return value of isxdigit:%d\n", isxdigit(c));
return 0;
}
Output:
Enter your input: F
The given input is a hexadecimal digit
Return value of isxdigit:4096
The given input is a hexadecimal digit
Return value of isxdigit:4096
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