1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/************************************************************************
*
* Purpose: Program to demonstrate the following functions:
* isalpha, isdigit, isspace.
* The same principles apply to isalnum, iscntrl, isgraph,
* islower, isprint, ispunct, isupper, isxdigit
*
* Author: M. J. Leslie
* Date: 09-Mar-94
*
************************************************************************/
#include <stdio.h> /* printf */
#include <ctype.h> /* isalpha isdigit isspace etc */
#define FALSE 0
#define TRUE 1
/* function declarations */
int char_type(char);
main()
{
char ch;
/* get a character from the keyboard */
printf(" Please enter a charcater => ");
ch = getc(stdin);
char_type(ch); /* Figure out the character type */
}
/****************************************************************
decide the character type.
*****************************************************************/
int char_type(char ch)
{
/* returns non zero if A-Z or a-z */
if ( isalpha(ch) != FALSE)
printf("%c is an Alpha character.\n",ch);
/* returns non zero if 0-9 */
if ( isdigit(ch) != FALSE)
printf("%c is a numeric character.\n",ch);
/* returns non zero if a space, CR, Tab, NL FF */
if ( isspace(ch) != FALSE)
printf("%c is white space\n", ch);
}
|