Is the ordering of checking if a number is between two values important? I figured this would be pretty simple to do but its not working.
if(0 <= (int)strings[p][0] && (int)strings[p][0] <= 9)
{
printf ("NUM: %s\n",strings[p]);;
}
else
{
printf ("ID: %s\n",strings[p]);
}