Debian – C braced initializer for -non- array
Please consider the following absurd but compiling code: int main(int argc, char *argv[]) { void *a, *b, *c, *d; void *the_good_array[] = { a, b, c, d }; void *the_bad_array = { a, b, c, d }; return 0; }…