- 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]);
}
guest 02.05.2011 18:44 # +13
TarasB 02.05.2011 18:58 # −3
Antichat 02.05.2011 19:00 # −2
guest 02.05.2011 19:07 # −2
обычно пишу:
[code=cpp]
namespace lol
{
#include "либа.h"
};[/cpp]
ff9c145b974436a 02.05.2011 23:54 # −5
hxxp://www.microsoft.com/msj/0997/hoodtextfigs.htm
ReL 02.05.2011 21:06 # 0
guest 04.05.2011 12:18 # +1
*str = tolower(*str);
TarasB 04.05.2011 12:56 # 0
guest 04.05.2011 13:19 # 0