【动态定义数组长度】 〖 求助 〗
我想设计一个动态定义二维数组长度的一个函数。但好像不行啊。#include "malloc.h"
#include "stdio.h"
#include "stdlib.h"
void main()
{
int *array=NULL, num, i ,j,f ,s;
printf("Input the number of element:");
scanf("%d", &num);
array=(int *)malloc( sizeof(int) * num ); /*申请动态数组使用的内存块*/
printf("input the second dimaisae\n");
scanf("%d", &s);
f=num%s;
if ( array==NULL ) /*内存申请失败:提示,退出*/
{
printf("out of memory, press any key to quit……");
exit(0); /*exit():终止程序运行,返回操作系统*/
}
printf("Input %d elements: ", num); /*提示输入num个数据*/
for (i=0; i<s; i++)
for (j=0; j<f; j++)
{
scanf("%d", &array[i][j]);
}
printf("%d elements are: ", num); /*输出刚输入的num个数据*/
for (i=0; i<s; i++)
for (j=0; j<f; j++)
{
printf("%d,", array[i][j]);
}
printf("\b "); /*删除最后一个数据后的分隔符“,”*/
free(array); /*释放由malloc()函数申请的内存块*/
}
请各位帮我看一看。谢谢了