The following expression can be substituted for. if (isalpha(c) && isdigit(c)) a) if...
The following expression can be substituted for.
if (isalpha(c) && isdigit(c))
a) if (isalnum(c))
b) if (isalphanum(c))
c) if (isalphanumeric(c))
d) None of the mentioned