Write a Simple function that accepts a character and return true if it is a digit else return false:
Solution:
bool isDigit(char ch)
{
return (ch >='0' && ch<='9');
}
The above function is self-explanatory.
Write a Simple function that accepts a character and return true if it is a digit else return false:
bool isDigit(char ch)
{
return (ch >='0' && ch<='9');
}
The above function is self-explanatory.