我有一个typedef struct
命名的“项目”,其中包含 2 个char[254]
(产品名称和公司名称)和 9 个int
变量。(价格、金额等)。
我从中创建了一个指针,typedef struct
一个数组(1D)和一个二维数组。
我曾经scanf
将数据存储到指针的各个变量中(到目前为止没问题)。
现在,我想将指针变量的数据“复制并存储”到数组(一维)中,然后将一维数组的数据“复制并存储”到二维数组中。
对于指向一维数组的指针,这就是我所做的:
void pointer_conversion(item *a, item curr[10000], int total)
{
memcpy(&curr[total], a, sizeof(item*));
}
// Tried doing: memcpy(&curr[total],a,sizeof(item*) * 100);
// Why 100?= just to be safe. But still not working.
现在,此函数char[254]
将指针的第一个复制并存储a
到一维数组curr
中,但其余的变量typedef struct
是NULL
。
有什么建议吗?
(在 Windows 上使用 VS2012)
typedef struct nodebase{
char productname[254];
char companyname[254];
int price;
int stocks;
//....
struct nodebase *next; //Use the struct as linked-list
}item;