1.

The______function tests for any character for which isalpha or isdigit is true.(a) isxdigit()(b) isspace()(c) isalnum()(d) isupper()The question was posed to me in class test.Query is from Character Handling topic in portion String Operations in C of C

Answer»

The correct option is (C) isalnum()

EXPLANATION: int isalnum(int c)

The isalnum FUNCTION TESTS for any character for which isalpha or isdigit is TRUE.



Discussion

No Comment Found

Related InterviewSolutions