Answers for "c check if character is a digit or alphabet"

C
0

c check if character is a digit or alphabet

char ch = '/';
 if(isalnum(ch))
   printf("numeric or ap=lphabet");     
 else
     printf("other symbol" );
 //output: other symbol 
CCopy
Posted by: Guest on April-06-2022

Code answers related to "c check if character is a digit or alphabet"

Code answers related to "C"

Browse Popular Code Answers by Language