C Reference Control Character Test: iscntrl()

The iscntrl() function returns a non-zero if its argument is a control character. If there is no control character encountered, then zero is returned.

iscntrl() source code example:

More »


Posted in C Reference ctype.h Functions | Comments Off on C Reference Control Character Test: iscntrl()


C Reference Alphabetic Test: isalpha()

The function isalpha() returns a non-zero if its argument is a letter of the alphabet. If it is not a letter of the alphabet, then zero is returned.

isalpha() source code example:

More »


Posted in C Reference ctype.h Functions | 1 Comment


C Reference Alphanumeric Test: isalnum()

The function isalnum() returns a non-zero if its argument is a letter of the alphabet or a numeric digit. If it is not letter of the alphabet or a numeric digit, then zero is returned.

isalnum() source code example:

More »


Posted in C Reference ctype.h Functions | Comments Off on C Reference Alphanumeric Test: isalnum()