Solved

Write a Function Definition for a IsDigit Function That Takes

Question 18

Essay

Write a function definition for a isDigit function that takes one argument of type char and returns a bool value.The function returns true if the argument is a decimal digit;otherwise it returns false.

Correct Answer:

verifed

Verified

bool isDigit(char ch)
{
blured imagereturn...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions