c语言里结构体数组长度怎么表示

2025-03-11 00:25:25
推荐回答(3个)
回答1:

应该是sizeof(struct/struct[0])

回答2:

struct m m1;
sizeof(m1)

回答3:

struct student[n]{

}