Skip to content

Lowercase #9

@Elieyeo9

Description

@Elieyeo9

include<stdio.h>

int main() {
char ch;

printf("\nEnter The Character : ");
scanf("%c", &ch);

if (ch >= 'A' && ch <= 'Z') {
printf("Character is uppercase Letters");
} else if (ch >= 'a' && ch <= 'z') {
printf("Character is Not Lowercase Letters");
} else {
printf("Non alphabet character");
}

return(0);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions