码迷,mamicode.com
首页 > 编程语言 > 详细

c++ memset 函数 及 坑

时间:2015-07-20 22:49:07      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

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

 

c++ memset 函数 及 坑

标签:

原文地址:http://www.cnblogs.com/i80386/p/4662610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!