Examveda

Which is true about isalnum(c), where c is an int that can be represented as an unsigned?
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

Answer: Option C


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output