i need help to solve this
#include <stdio.h>
#include <stdlib.h>
void toLowerCase();
int main()
{
system("cls");
toLowerCase();
return 0;
}
void toLowerCase()
{
char ch, ch1;
printf("\nEnter a character to convert: \n ");
scanf("%c", &ch);
ch1 = ch+32;
printf("Converted value is %c", ch1);
fflush(stdout);
}