- 论坛徽章:
- 0
|
想要实现动态内存分配(参考C专家编程一书),根据其提供的程序段进行实验,程序如下:
#include<stdlib.h>
#include<malloc.h>
#include<stdio.h>
int current_element=0;
int total_element=12;
char *dynamic;
void add_element(char c)
{
if(current_element==total_element-1)
{
total_element*=2;
dynamic=(char *)realloc(dynamic,total_element);
if(dynamic==NULL) error("Coundn't expand the table");
}
current_element++;
dynamic[current_element]=c;
}
void main()
{
dynamic=(char *)malloc(total_element);
dynamic="helloworld!";
add_element('!');
printf("%s\n",dynamic);
}
用gcc可以编译通过,运行时就出现了Segmentation fault (core dumped)错误,是什么问题,该怎么解决?请大家指教,谢谢! |
|