#include <string.h> #include <stdio.h> typedef struct ss{ int num; int dir[5][3]; }tent; tent a; int main() { memset(&a, 0, sizeof(a)); return 0; } 这里有个坑,sizeof(变量名) 而不是 sizeof(tent)
时间: 2024-10-14 19:59:33
#include <string.h> #include <stdio.h> typedef struct ss{ int num; int dir[5][3]; }tent; tent a; int main() { memset(&a, 0, sizeof(a)); return 0; } 这里有个坑,sizeof(变量名) 而不是 sizeof(tent)