세그멘 테이션 폴트
아래의 소스는 문자열 카피하는 소슨데, 컴파일하고 실행시키니깐,
세그멘테이션 폴트가 납니다.
이유가 뭔지 모르겟습니다.
1 #include
2
3 char *copy_string(char *dest, char *source);
4
5 void main(void)
6 {
7 char *s = "this is source";
8 char *d;
9
10 copy_string(s, d);
11
12 // printf("d is %s", d);
13 // printf("and s is %s\n", *s);
14
15 }
16
17 char *copy_string(char *dest, char *source)
18 {
19 while(1){
20 *dest = *source;
21
22 if(*dest == '\0')
23 return;
24
25 ++dest;
26 ++source;
27 }
28
29 return dest;
30 }
Re: 세그멘 테이션 폴트
리눅스 wrote..
아래의 소스는 문자열 카피하는 소슨데, 컴파일하고 실행시키니깐,
세그멘테이션 폴트가 납니다.
이유가 뭔지 모르겟습니다.
1 #include<stdio.h>
2
3 char *copy_string(char *dest, char *source);
4
5 void main(void)
6 {
7 char *s = "this is source";
8 char *d;
9
10 copy_string(s, d);
11
12 // printf("d is %s", d);
13 // printf("and s is %s\n", *s);
14
15 }
16
17 char *copy_string(char *dest, char *source)
18 {
19 while(1){
20 *dest = *source;
21
22 if(*dest == '\0')
23 return;
24
25 ++dest;
26 ++source;
27 }
28
29 return dest;
30 }
10 행의 copy_string(s, d) 에서 s,d 를 바꿔 보세요.
copy_string() 를 보심 두번째 인자로 복사할 원문을 넣게 되어 있는데
초기화 안된 포인터를 넣어주니깐, 세그먼테이션 폴트가 나죠.
포인터가 가리키는 메모리를 복사하는데는
님처럼 직접하는 방법도 있겠지만,
memcpy() 함수를 쓰는게 더 좋을것 같습니다.
#include
void *memcpy(void *dest, const void *src, size_t n);
자세한건 man memcpy 해서 보시구요.
열심히 하세요. ^^
*d의 공간이 없자나용..
mallloc을 이용하여 메모리를 잡으세요~
Re: 세그멘 테이션 폴트
메인 함수 부분을 이렇게 바꾸면 됩니다.
void main(void)
{
char *s = "this is source";
char *d;
char Buff[ 32 ];
memset( Buff, 0x00, sizeof( Buff ) );
d = Buff;
copy_string(s, d);
printf("d is %s", d);
printf("and s is %s\n", *s); -> printf("and s is %c\n", *s);
또는 -> printf("and s is %s\n", s);
}
댓글 달기