C语言,怎么为动态结构体数组分配内存

#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
struct record
{
float coef;
int expn;
};

void main()
{
int *array = 0, num, i;
printf("please input the number of element: ");
scanf("%d", &num);

/*申请动态数组使用的内存块*/
array = (struct record *)malloc(sizeof(struct record )*num);
if (array == 0) /*内存申请失败,提示退出*/
{
printf("out of memory,press any key to quit...\n");
exit(0); /*终止程序运行,返回操作系统*/
}

/*提示输入num个数据*/
printf("please input %d elements: ", num);
for (i = 0; i < num; i++)
{
scanf("%c", &array[i].coef);
scanf("%d", &array[i].expn);
}

/*输出刚输入的num个数据*/
printf("%d elements are: \n", num);
for (i = 0; i < num; i++)
{
printf("%f,", array[i].coef);
printf("%d,", array[i].expn);
}
printf("\b \n"); /*删除最后一个数字后的分隔符逗号*/
free(array); /*释放由malloc函数申请的内存块*/
getch();
}

高手帮帮忙 !!怎么修改正确

这行代码:array = (struct record *)malloc(sizeof(struct record )*num);
是要申请struct record类型的内存,而你定义成int*,所以int* array改成struct record* array,另外num和i的定义不要record定义在一起,否则类型和record一样,要独立定义为:int num,i,最后,scanf("%c", &array[i].coef);改成scanf("%f", &array[i].coef);
温馨提示:答案为网友推荐,仅供参考
第1个回答  推荐于2016-04-15
这行代码:array = (struct record *)malloc(sizeof(struct record )*num);
是要申请struct record类型的内存,而你定义成int*,所以int* array改成struct record* array,另外num和i的定义不要record定义在一起,否则类型和record一样,要独立定义为:int num,i,最后,scanf("%c", &array[i].coef);改成scanf("%f", &array[i].coef);
第2个回答  2010-10-16
看看你的部分程序!
struct record
{
float coef;
int expn;
};
/*提示输入num个数据*/
printf("please input %d elements: ", num);
for (i = 0; i < num; i++)
{
scanf("%c", &array[i].coef);
scanf("%d", &array[i].expn);
}
你的结构体中的元素coef是定义成浮点型的,而你在下面输入的时候用的是%c字符方式接收的,这是怎么回事啊!
编程的时候一定要细心,一个标点都不能出错!
相似回答