本文介绍了初始化结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我对结构有疑问..我必须关注:


typedef struct STATS

{

int src;

int dest;

int total;

int drop;

} STATS;


然后,以下内容:


STATS e_STATS [10];


我希望我的e_STATS [10]初始化为0 ...但是,我尝试了几种方式

我无法使其工作..


tnx,

费尔南多

Hi,

I have a doubt regarding structus.. I have to following:

typedef struct STATS
{
int src;
int dest;
int total;
int drop;
} STATS;

And then, the following:

STATS e_STATS[10];

I want my e_STATS[10] initialize to 0... however, i tried several ways
and i cannot make it work..

tnx,
Fernando

推荐答案





将声明更改为


STATS e_STATS [10] = {0};


,它将被初始化为0.


/ Michael



Change the declaration to

STATS e_STATS[10] = { 0 };

and it will be initialized to 0.

/Michael



这篇关于初始化结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 03:11