Determine whether the value of c is a letter. Use the conditional operator to print " is a " or " is not a " when the result is displayed.

What will be an ideal response?

```
cout << '\'' << c << "\' "
<< (isalpha(c) ? "is a" : "is not a")
<< " letter" << endl;
```

Computer Science & Information Technology

You might also like to view...

What is the first DHCP message sent by a client attempting to obtain IP address information from a DHCP server?

a. DHCPOFFER b. DHCPACK c. DHCPDISCOVER d. DHCPREQUEST

Computer Science & Information Technology

Who are members of the Authenticated Users group?

What will be an ideal response?

Computer Science & Information Technology