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
/*
* Prints the type of character inputed
*
*/
#include <stdio.h>
int main(int argc, char *argv[])
{
char c;
printf("Enter a character: ");
scanf("%c", &c);
if((c >= 'a') && (c <= 'z')) {
printf("lowercase\n");
} else if((c >= 'A') && (c <= 'Z')) {
printf("uppercase\n");
} else if((c >= '0') && (c <= '9')) {
printf("digit\n");
} else {
printf("special character\n");
}
return 0;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX