- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
void tolowerStr(char *Str)
{
#include <windows.h>
#include <ctype.h>
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(LC_CTYPE,"Russian");
int len = strlen(Str);
for(int c=0; c<len; c++)
Str[c] = tolower(Str[c]);
}