我目前正在尝试将指向结构的指针数组归零。任何帮助或文档都会很好。我是初学者,所以请尽可能清楚。
这是我的代码示例。抱歉,如果我没有正确列出这个,这是我的第一次发帖。在此处输入代码
#include "stdlib.h"
enum boxtype
{
Card,
Mask,
};
typedef struct
{
enum boxtype type;
int L;
int H;
int x;
int y;
int Area;
Float ManBox;
Float WomanBox;
}Boxes;
typedef struct
{
Boxes Info;
float Hight;
}Male;
typedef struct
{
Boxes Info;
int Size;
}Female;
void main()
{
Man Male[100];
Woman Female[100];
Boxes *Spaces[600]; //This is the array of pointers that needs to be nulled.
}