do not try to modified the value in const region
I write a funciton to reverse a string , fortunately I give a string array to it's argment firstly, it ok,
however it's show "segmentation fault", when I try to give string to it by a point:
/* strrev.c by vinco at 2011-08-04
Ubuntu9.10 CC/GCC
*/
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
char* strrev(char* str);
int main()
{
#if 0
char* str = "vinco zhang";
//char* p ="vinco zhang";
//char* str = (char*) malloc(32);
//strcpy(str,p);
#else
char str[]="vinco zhang";
#endif
//strrev(str);
//printf("strrev : str = %s
",str);
printf("strrev : str = %s
", strrev(str) );
return 0;
}
char* strrev(char* str)
{
char* p = str;
char t;
int i=0, len = strlen(str) - 1;
for(i=0 ; i<len ; i++, len--)
{
t = *(p+i) ;
*(p+i) = *(p+len) ;
*(p+len) = t ;
}
return str;
}
1. case #if 0, I give a string array to strrev(), it work well:
root@vinco:/home/vinco# make strrev
cc strrev.c -o strrev
root@vinco:/home/vinco# ./strrev
strrev : str = gnahz ocniv
root@vinco:/home/vinco#
2. case #if 1,"segmentation fault"
root@vinco:/home/vinco# make strrev
cc strrev.c -o strrev
root@vinco:/home/vinco# ./strrev
Segmentation fault
3, to void the problem, as you see:
i. do as case #if 0
ii. so as the comment :( it's just a liite troublesome , but it done)
char* p ="vinco zhang";
char* str = (char*) malloc(32);
strcpy(str,p);
Summary:
1.do not try to modified the value in const region ;
2.the funciton should be declarated as following format if you would not modified it's argment :
char*/void funcion(const char* s1 ,const char* s2,.... )
3. if you have to give it to a string to the argment of a function , do as case "#if 0"or the comment I show above
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콜백 함수를 Angular 하위 구성 요소에 전달이 예제는 구성 요소에 함수를 전달하는 것과 관련하여 최근에 직면한 문제를 다룰 것입니다. 국가 목록을 제공하는 콤보 상자 또는 테이블 구성 요소. 지금까지 모든 것이 구성 요소 자체에 캡슐화되었으며 백엔드에 대한 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.