【结构体】【初始化】【{0}、{}】进阶

本文介绍在C语言中如何将结构体的所有成员初始化为0的方法,包括使用大括号初始化、空的大括号初始化、使用memset函数及复合文字进行初始化。

为结构体每个成员初始化成0

Reference C99 Standard 6.7.8.21:

If there are fewer initializers in a brace-enclosed list than there are elements or members of an aggregate,

or fewer characters in a string literal used to initialize an array of known size than there are elements in the array,

the remainder of the aggregate shall be initialized implicitly the same as objects that have static storage duration.

 

 

每个成功员初始为0的4种方法
struct A = {0};
struct A = {};
memset(&A, 0, sizeof(struct ));
A= (struct){ 0 } // c99 中 compound literal

样例

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值