InterviewSolution
Saved Bookmarks
| 1. |
Which function is used to check whether a character is an alphabet?(a) isalpha()(b) isalnum()(c) isdigit()(d) isblank() |
|
Answer» Correct option is (a) isalpha() The explanation: Character classification provides isalpha() function to check whether a character in C++ is an alphabet or not. |
|