Problem Statement
Write a C program that reads a single character from standard input and determines whether it is an alphabet letter (A-Z or a-z), a digit (0-9), or a special character (any other character).
The program should output one of the following messages based on the character type:
- "This is an alphabet." for letters
- "This is a digit." for numeric digits
- "This is a special character." for all other characters
Use appropriate conditional statements to classify the character based on its ASCII value.