Answers for "c check if string is only digits"

C
0

c check if character is a digit

char ch = '1';
if(isdigit(ch))
  printf("numeric");     
else
    printf("alphabet" );
 // output: numeric
CCopy
Posted by: Guest on April-06-2022

Code answers related to "c check if string is only digits"

Code answers related to "C"

Browse Popular Code Answers by Language