Provided Code
===========================================================
#include <stdio.h>
#include <stdio.h>
#include<string.h>
char toLower(char c)
{
return (c >= ‘A’ && c <= ‘Z’) ? (char)((int)c +32) : c;
}
int isLower(char c)
{
return (c >= ‘a’ && c <=
OR
OR