#include <string.h>
#include <stdio.h>
typedef struct ss{
int num;
int dir[][];
}tent;
tent a;
int main()
{
memset(&a, , sizeof(a));
return ;
} 这里有个坑,sizeof(变量名) 而不是 sizeof(tent)
#include <string.h>
#include <stdio.h>
typedef struct ss{
int num;
int dir[][];
}tent;
tent a;
int main()
{
memset(&a, , sizeof(a));
return ;
} 这里有个坑,sizeof(变量名) 而不是 sizeof(tent)