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