Page 1 of 1

Which is true about isalnum(c), where c is an int that can be represented as an unsigned?

Posted: Wed Jul 13, 2022 7:54 pm
by answerhappygod
char or EOF.isalnum(c) returns
a) Non-zero if isalpha(c) or isdigit(c)
b) 0 if not isalpha(c) or not isdigit(c)
c) Both Non-zero if isalpha(c) or isdigit(c) & 0 if not isalpha(c) or not isdigit(c)
d) None of the mentioned