Notice
Recent Posts
Recent Comments
LuvSea
strlen 구현 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
// 문자열의 길이를 return
int strlen2(char *s1)
{
int cnt = 0;
while(*s1 != '\0';)
{
cnt++;
s1++;
}
return cnt;
}
Comments