Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- { char ch;
- scanf("%c",&ch);
- if((ch>='a' && ch<='z') || (ch>='A' && ch<='Z'))
- {
- printf("alhabet");
- }
- else if (ch>='0' && ch<='9')
- {
- printf("digit");
- }
- else
- {
- printf("special character");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment