isalpha()

#include <ctype.h>

int isalpha( int character );

This functions returns a nonzero integer if character is an alphabetic character ( 'a' through 'z' or 'A' through 'Z' ). Otherwise, it returns 0.


Back to Essential C Functions.

Log in or register to write something here or to contact authors.