InterviewSolution
Saved Bookmarks
| 1. |
isalpha() function is used to detect characters both in uppercase and lowercase.(a) true(b) falseI had been asked this question in an online interview.This question is from Character Handling in chapter String Operations in C of C |
|
Answer» CORRECT option is (a) true Explanation: ISALPHA() function is used to test for letters in the local alphabet. For the locale, the local alphabet CONSISTS of26 ENGLISH letters, in each of two CASES. |
|