void OneDToTwoD(char* rel){
/* all the declarations here */
while(rel[i] != '\0'){
i++;
}
...
在上面的代码中,我“有时”都会遇到分段错误。并且 valgrind check 向我抛出“Invalid read of size 1”
while(rel[i] != '\0'){
在那一行中,我试图找出rel
. 我知道必须有更好的方法来做到这一点。我不能只是做sizeof
我可以吗?