Notice
Recent Posts
Recent Comments
LuvSea
strlwr 구현 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
// 문자열을 소문자로 변환
void strlwr2(char s)
{
while(*s != '\0')
{
if(s>=65 && s<=90) s += 32;
s++;
}
}
'sTudy' 카테고리의 다른 글
클래스 내 static 함수 (0) | 2009.08.10 |
---|---|
클래스내 static 멤버에 대하여 (0) | 2009.08.10 |
strupr 구현 (0) | 2009.07.10 |
strrev 구현 (0) | 2009.07.10 |
strcmp 구현 (0) | 2009.07.10 |
Comments