结构体的初始化
定义一个结构体:
struct book java = {.value = 108.00,.auther = "Bruce Eckel",100};
value的最终值为100。
?
注:这种结构体的初始化方式在Linux内核代码中很常见