Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h> //standard input/output
- #include <stdlib.h> // standard library, malloc..
- int main() {
- char c;
- scanf("%c", &c);
- if(c >= 'a' && c <= 'z') {
- printf("Bukvata e mala\n");
- }
- else if(c >= 'A' && c <= 'Z') {
- printf("Bukvata e golema\n");
- }
- else if(c >= '0' && c <= '9') {
- printf("Bukvata e cifra\n");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment