31.12.2016, 11:43
Hello,
What should I use to stop using "IS_IN_RANGE"
if(IS_IN_RANGE(string[0], '0', '9'))
Thanks
What should I use to stop using "IS_IN_RANGE"
if(IS_IN_RANGE(string[0], '0', '9'))
Thanks
isCharacterInRange(character, char1, char2)
{
return (character <= char2 && character >= char1);
}
if('0'<=string[0]<='9')