求教字符指针作为函数参数的问题

2020-01-23 14:47发布

#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
void catstr(char *dest,char *src);

void main()
{
        char *dest,*src="help you?";
        src=(char *)malloc(256);
        if((dest=(char *)malloc(80))==NULL)
        {
                printf("no memory ");
                exit(1);
        }
        dest="Can I ";
        catstr(dest,src);
        puts(dest);
}

void catstr(char *dest,char *src)
{
        int i=0;
        while(*dest)        dest++;
        for(i=0;i<9;i++)
        {
                *dest=*src;
                src++;
                dest++;
        }       
}
以上是我的代码,可是一运行就显示停止运行,单步调试显示这个    test1_4.exe 中的 0x0116151a 处未处理的异常: 0xC0000005: 写入位置 0x011657c6 时发生访问冲突   。
想实现两个字符串连接起来,求各路高手指点怎么实现啊,这个程序是郭天祥那本书的例子,不知道为啥用不了。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
11条回答
welcome_cool
1楼-- · 2020-01-23 19:35
内存泄露了。
dest="Can I "; 应该改成strcpy( dest, (char *)"Can I" )
albert_w
2楼-- · 2020-01-23 22:07
转一圈回来ls就抢走了沙发...
aozima
3楼-- · 2020-01-24 01:23
 精彩回答 2  元偷偷看……
welcome_cool
4楼-- · 2020-01-24 04:25
aozima 发表于 2014-4-29 11:13
指向只读空间,然后对其进行了写操作。编译器会有警告的,无视者死。

这种代码会造成缓冲区溢出,哪天一 ...

看清楚再说了。
dest="Can I "; 应该改成strcpy( dest, (char *)"Can I" ) 。
改成strcpy( dest, (char *)"Can I" ) 还有泄露?
jzkn
5楼-- · 2020-01-24 09:18
弄了半天发现有几个问题:
1、src指向只读空间,后面又拿去赋值(*dest=*src),是不行的。
2、src先赋值为字符串,然后才malloc,这样指针就变了,不指向字符串了。

作如下修改在C-FREE下编译通过:
  1. #include<stdio.h>
  2. #include<malloc.h>
  3. #include<stdlib.h>
  4. #include <string.h>
  5. void catstr(char *dest,char *src);

  6. int  main()
  7. {
  8.         char *dest;
  9.                 char *src;
  10.        
  11.         src=(char *)malloc(256);
  12.       
  13.         strcpy(src,"help you?");
  14.         
  15.         if((dest=(char *)malloc(80))==NULL)
  16.         {
  17.                 printf("no memory ");
  18.                 exit(1);
  19.         }
  20.       
  21.         strcpy(dest,"Can I ");
  22.         puts(dest);
  23.         puts(src);
  24.         catstr(dest,src);
  25.                
  26.         puts(dest);
  27.         
  28.         return 0;
  29. }

  30. void catstr(char *dest,char *src)
  31. {
  32.         int i=0;
  33.         int slen=strlen(src);
  34.         
  35.         while(*dest) dest++;
  36.         
  37.        for(i=0;i<=slen;i++)
  38.         {
  39.                 *dest=*src;
  40.                 src++;
  41.                 dest++;
  42.                
  43.         }      
  44. }
复制代码
srtthree
6楼-- · 2020-01-24 14:01
welcome_cool 发表于 2014-4-29 10:40
内存泄露了。
dest="Can I "; 应该改成strcpy( dest, (char *)"Can I" )

搞定了,大神就是多啊,自己研究了代码半天也没想明白哪写错了,原来是这样溢出了,多谢

一周热门 更多>