Notice
Recent Posts
Recent Comments
LuvSea
strcpy 구현 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
// s1 : 사본, s2 : 원본
void strcpy2(char *s1, const char *s2)
{
while(*s2 != '\0')
{
*s1 = *s2;
s1++;
s2++;
}
*s1 = '\0';
}
void strcpy2(char *s1, const char *s2)
{
while(*s2 != '\0')
{
*s1 = *s2;
s1++;
s2++;
}
*s1 = '\0';
}
Comments