标题:Program stopped at 0x76f115de.It stopped with signal SIGSEGV错误,求!
只看楼主
bok002121
Rank: 2
等 级:论坛游民
帖 子:90
专家分:26
注 册:2012-11-11
结帖率:87.5%
 问题点数:0 回复次数:2 
Program stopped at 0x76f115de.It stopped with signal SIGSEGV错误,求!
#include "stdio.h"
#include "stdlib.h"


void move(char*a,int n)
{
  char t;
  int i;
  t=*a;
  if(n>1)
  {
      for(i=0;i<n-1;i++)
      {
          *a=*(a+1);
      }
      *(a+i)=t;
  }   
  move(a,n-1);
}

int main()
{
    int i=0,n=0;
    char *a=0;
    puts("enter the data");
    scanf("%s",a);
    for(;*(a+i);)
    {
      i++;   
    }                            //运行到这里就错误了,请问怎么错了
    n=i;
    move(a,n);
    printf("%s",a);
    system("pause");
    return 0;
   
}
搜索更多相关主题的帖子: include stopped void 
2013-04-04 01:03
bok002121
Rank: 2
等 级:论坛游民
帖 子:90
专家分:26
注 册:2012-11-11
得分:0 
搞定了,谢谢留意..........char *a;需要分配空间
a=(char*)malloc(size);就好了
2013-04-04 22:13
qiqike
Rank: 1
等 级:新手上路
帖 子:6
专家分:7
注 册:2013-3-15
得分:0 
.,
2013-04-07 18:22



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-403007-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.849337 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved