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.

What will be an ideal response?


```
bool isDigit(char ch)
{
return (‘0’ <= ch) && (ch <= ‘9’);
}
```

Computer Science & Information Technology

You might also like to view...

Which of the following statements will convert a string s into i of int type?

a. i = Integer.parseInt(s); b. i = (new Integer(s)).intValue(); c. i = Integer.valueOf(s).intValue(); d. i = Integer.valueOf(s); e. i = (int)(Double.parseDouble(s));

Computer Science & Information Technology

Because tables are often related in Access, one result is that forms can get more complex

Indicate whether the statement is true or false

Computer Science & Information Technology

In the Form Wizard, the ____ layout displays fields with the labels at the top of a column that contains the field values.

A. Justified B. Tabular C. Stacked D. Columnar

Computer Science & Information Technology

The easiest way to specify line length is to set the width of the content div.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology