islower Function
Syntax :
int islower(int ch);
Example
#include <ctype.h>
#include <stdio.h>
void main() {
char ch='a';
if(islower(ch)) {
printf("%c is lowercase\n", ch);
}
}
Output
int islower(int ch);
#include <ctype.h>
#include <stdio.h>
void main() {
char ch='a';
if(islower(ch)) {
printf("%c is lowercase\n", ch);
}
}