Lubos Pintes:

Allocating statically sized array bloats the executable.

Because char.init is not '\0'. Try to initialize it with zero:

char[10_000] a = '\0';
void main() {}

Bye,
bearophile

Reply via email to