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.

Leave a Reply

Your email address will not be published. Required fields are marked *