|
P99
|
A catch all 0-initializer. Variables of static storage are initialized as if all components are initialized recursively from 0. Use this macro to achieve the same effect for unsigned a = P99_INIT; unsigned b[2] = P99_INIT; unsigned *c = P99_INIT; unsigned (*)d[3] = P99_INIT; unsigned e[4][5] = P99_INIT; Here, depending on your compiler, the last expression for
|
1.7.6.1