#include <stdio.h>
#include <ctype.h>
int main(void)
{
char arr[] = {"This guest pOst is BY C MAster"};
char *p = arr;
for ( ; *p; ++p) *p = tolower(*p);
printf("%s\n", arr); // this guest post is by c master
return 0;
}
/*
run:
this guest post is by c master
*/