我希望用户在程序启动时定义数组的大小,我目前有:
#define SIZE 10
typedef struct node{
int data;
struct node *next;
} node;
struct ko {
struct node *first;
struct node *last;
} ;
struct ko array[SIZE];
这可行,但是,我想删除#define SIZE
,并让 SIZE 成为用户定义的值,所以在主函数中我有:
int SIZE;
printf("enter array size");
scanf("%d", &SIZE);
我怎样才能将该值传递给数组?
编辑:现在我在 .h 文件中有以下内容:
typedef struct node{
int data;
struct node *next;
} node;
struct ko {
struct node *first;
struct node *last;
} ;
struct ko *array;
int size;
这在 main.c 文件中:
printf("size of array: ");
scanf("%d", &size);
array = malloc(sizeof(struct ko) * size);
这应该工作吗?它没有程序崩溃,但我不知道问题是在这里还是程序中的其他地方......