Google News
logo
CPP - Quiz(MCQ)
Which function is used to check whether a character is an alphabet?
A)
isdigit()
B)
isblank()
C)
isalpha()
D)
isalnum()

Correct Answer :   isalpha()


Explanation : Character classification provides isalpha() function to check whether a character in C++ is an alphabet or not.

Advertisement