Multiple choice technology programming languages

In which header file is isalpha() declared?

  1. conio.h

  2. stdio.h

  3. ctype.h

  4. stdlib.h

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

isalpha() is a character classification function that checks whether a character is alphabetic. It's declared in ctype.h, which contains all character type testing functions.