在struct「saf」中我有數組「stack」,並且在struct「data」中有「pinx」,它是struct「data」的數組。我想數組「堆棧」作爲成員的「pinx」數組,但我不知道我怎麼可以從棧數組訪問pinx的成員。我爲你提供一張圖片,以便你明白我想要做什麼。具有多個成員的結構數組
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct saf
{
int head;
void **stack;
int size;
}exp1;
struct data
{
int flag;
char name[50];
};
struct data *pinx;
void init(int n)
{
pinx = malloc(sizeof(struct data) * n);
exp1.stack = malloc(n);
}
void add()
{
strcpy(pinx[0].name,"name");
pinx[0].flag=0;
exp1.stack[0]=&pinx[0];
}
int main()
{
printf("Give size: ");
scanf("%d",&exp1.size);
init(exp1.size);
add();
return 0;
}
'exp1.stack =的malloc(N);'可能是一個錯誤,我認爲你的意思' exp1.stack = malloc(n * sizeof * exp1.stack)',這會讓你在該數組中有'n'個指針。 –