-
Which is true about isalnum(ch), where ch is an int that can be represented as an unsigned?
char or EOF.isalnum(ch) returns
-
- Nothing
- 0 if not isalpha(ch) or not isdigit(ch)
- Non-zero if isalpha(ch) or isdigit(ch)
- Both 0 if not isalpha(ch) or not isdigit(ch) & Non-zero if isalpha(ch) or isdigit(ch)
- None of these
Correct Option: D
Both 0 if not isalpha(ch) or not isdigit(ch) & Non-zero if isalpha(ch) or isdigit(ch)