Example

bool isLowerCaseCharacter(char input)
{
return ('a' <= 
input && input <= 'z');
}

Solution
Use the methods from ctype.h.
#include <ctype.h>

bool isLowerCaseCharacter(char input)
{
return islower(input)
;
}