C語言中,可以通過以下方法清空結構體數組:
struct MyStruct {
int num;
char name[100];
};
struct MyStruct myArray[10]; // 定義一個包含10個元素的結構體數組
// 清空結構體數組
for (int i = 0; i < 10; i++) {
myArray[i].num = 0;
strcpy(myArray[i].name, "");
}
#include <string.h>
struct MyStruct {
int num;
char name[100];
};
struct MyStruct myArray[10]; // 定義一個包含10個元素的結構體數組
// 清空結構體數組
memset(myArray, 0, sizeof(myArray));
以上是兩種常用的清空結構體數組的方法,根據實際需求選擇合適的方法。