Answers for "vérifie chiffres dans un string"

0

vérifie chiffres dans un string

1
2
3
4
5
6
7
8
int is_int(const char *sText)
{
    while (*sText >= '0' && *sText <= '9')
        *sText++;
    if (!*sText)
        return (1);
   return (0);
}
Posted by: Guest on October-23-2021

Code answers related to "vérifie chiffres dans un string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language