C程序申请动态结构体数组,怎么做?
答案:3 悬赏:60 手机版
解决时间 2021-01-16 11:46
- 提问者网友:浮克旳回音
- 2021-01-15 11:43
C程序申请动态结构体数组,怎么做?
最佳答案
- 五星知识达人网友:青灯有味
- 2021-01-15 12:33
struct A
{
int a;
int b;
};
struct A *pA = NULL;
pA = (struct A *)malloc(sizeof(struct A)*N);
N为结构体个数
用完记得用free(pA)施放内存。
{
int a;
int b;
};
struct A *pA = NULL;
pA = (struct A *)malloc(sizeof(struct A)*N);
N为结构体个数
用完记得用free(pA)施放内存。
全部回答
- 1楼网友:过活
- 2021-01-15 14:48
struct yourtype
{
};
yourtype *ptype =(yourtype *) malloc(yourtype);
{
};
yourtype *ptype =(yourtype *) malloc(yourtype);
- 2楼网友:梦中风几里
- 2021-01-15 13:33
假如有个student结构体,则
student a=new student[n]();就可以了 想申请多少就多少
student a=new student[n]();就可以了 想申请多少就多少
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯