为结构体每个成员初始化成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
样例

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

被折叠的 条评论
为什么被折叠?



