Answers for "check string letter in c"

C
4

check if string in string c

if(strstr(sent, word) != NULL) {
    /* ... */
}
Posted by: Guest on February-23-2020
0

c check if character is an alphabet

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

Code answers related to "check string letter in c"

Code answers related to "C"

Browse Popular Code Answers by Language