char* toLowerCase(char* s) {if(s==NULL){return NULL;}for(int x=0;x<strlen(s);x++){if(s[x]>='A'&&s[x]<='Z'){s[x]=s[x]-'A'+'a';}}return s; }