I tried this:
char source[16344];But it seems to define `source` inside the .bss section; that's not what I want.
It's just not practical to use this char source []= {0, 0, 0, ... kind of definition, due to the size of the array.
---------- Post added at 10:47 AM ---------- Previous post was at 10:21 AM ----------
Oh, {} syntax doesn't have to include all the entries; that's nice.
Nice thing there's this page:
How to initialize an array in C - Stack Overflow
char source [16344]= {0};
It works now.


Sign In
Create Account


Back to top









