c++ memset 函数 及 坑

#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)

 

posted on 2015-07-20 20:48  雨渐渐  阅读(666)  评论(0编辑  收藏  举报

导航